Wednesday, June 3, 2015

Roadmap for Learning Unreal Engine

As part of learning how to make an engine, I want to immerse myself in another engine.

I'm really good at Unity 3D, so I have a really good perspective about how it works. For contrast, I'm going to learn the next most popular engine, Unreal Engine. Learning Unreal has the added benefit of allowing me to sell some of my work on the Marketplace. Since I am most definitely working toward making an ocean renderer and a terrain generator, I can take them both a step further and turn them into full-on toolkits for Unreal Engine.

Below is the roadmap I'm planning to take in order to learn it:

  1. Blueprints
    1. Quick Start
      1. Required Setup
      2. Construct Launch Pad
      3. Convert Actor to Class Blueprint
      4. Create Starting Point
      5. Test Overlapping Actor
      6. Launch Character
      7. Assignments
    2. Basics
      1. Navigating the Graph
      2. Placing Nodes
      3. Connecting Nodes
      4. Creating Functions
      5. Setting and Getting Actor References
      6. Working with Arrays
      7. Collapsing Graphs
      8. Making Macros
      9. Debugging
      10. Blueprint Communication Project
        1. Sample Project Setup
        2. Event Dispatchers/Casting to Blueprints
        3. Binding Events on Spawn
        4. Communicating with HUDs
        5. Communicating with Multiple Blueprints
        6. Assignments
    3. More Advanced
        1. How to Set Up Input on an Actor in Blueprints
      1. How to Add Components in Blueprints
      2. How to Set Up Character Movement in Blueprints
        1. Character Setup
        2. Input and Game Mode
        3. Finishing Character Setup
        4. Creating Blend Spaces
        5. Animation Blueprint - Idle and Walk States
        6. Animation Blueprint - Crouch States
        7. Animation Blueprint - Jog State
        8. Animation Blueprint - Jump State
        9. Animation Blueprint - Prone State
      3. How to Find Actors in Blueprints
      4. How to Possess Pawns in Blueprints
      5. How to Reference Actors in Blueprints
      6. How to Set Up a Game Mode in Blueprints
      7. How to Set Up Inputs in Blueprints
      8. How to Spawn/Destroy an Actor in Blueprints
      9. How to use the OnHit Event in Blueprints
      10. How to use Raycasts in Blueprints
      11. How to use Timers in Blueprints
      12. How to use Cameras in Blueprints
      13. Class Creation
  2. C++
    1. Basics
      1. Quick Start
        1. Create a new Project
        2. Create a C++ Class
        3. Write and compile C++ Code
        4. Test
      2. Player Input and Pawns
        1. Customize a Pawn
        2. Configure Game Input
        3. Program and Bind Game Actions
        4. Assignments
      3. Game-Controlled Cameras
        1. Place Cameras In The World
        2. Control Camera View in C++
        3. Place A Camera Director In The World
        4. Assignments
      4. Variables, Timers and Events
        1. Creating an Actor that Uses a Timer
        2. Expose Variables and Functions to the Editor
        3. Extend and Override C++ with Blueprints
        4. Assignments
      5. Player-Controlled Cameras
        1. Attach a Camera to a Pawn
        2. Configure Input to Control the Camera
        3. Write Cod to React to Input
        4. Assignments
      6. Components and Collision
        1. Creating and Attaching Components
        2. Configuring Input and Creating a Pawn Movement Component
        3. Coding our Pawn Movement Component's Behavior
        4. Using our Pawn and Components Together
        5. Playing In Editor
        6. Assignments
    2. More Advanced
      1. Survival Game Tutorial Series
        1. Section 1
          1. Movement
          2. Animation
          3. Object Interaction
          4. Hunger System
          5. Networking Support
        2. Section 2
          1. Flashlight
          2. Inventory
          3. Switching Weapons
          4. Deal Damage
          5. Death
          6. Respawn
        3. Section 3
          1. AI Zombie
          2. PawnSensing
          3. Behavior Tree
        4. Section 4
          1. Dynamic Time of Day
          2. Advanced Player Spawning
          3. Game Loop
        5. Section 5
          1. Game Networking
          2. Carrying Around Barriers and Bombs
      2. Shader Development in Unreal
        1. Flat Shading
        2. Basic Diffuse
        3. Per Pixel Diffuse
        4. Basic Specular
        5. Per Pixel Specular
        6. Normal Maps
        7. Transparency Maps
        8. Transparency Masks
        9. Geometry Shaders
      3. Procedural Generation
        1. Procedural Mesh Generation
        2. Marching Cubes
          1. Marching Squares
          2. Basic Terrain Deformation
          3. Metaballs
            1. SPH Fluids
        3. Perlin Noise
  3. Projects
    1. Procedural Terrain Generation with Marching Cubes
    2. Ocean Toolkit
      1. Ocean Wave Simulation
      2. Wave Particles
      3. Object Interaction and Buoyancy
      4. Hybrid Simulation
    3. Fluid Toolkit
      1. SPH Simulation
      2. Eulerian Simulation
      3. Hybrid Simulation
This should get me up to speed on how Unreal Does Things. We'll see on Friday how good I feel about this, and we'll update and modify as we go along.

No comments:

Post a Comment