Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 1.8 KB

File metadata and controls

30 lines (20 loc) · 1.8 KB

Tutorial

In this tutorial, we will go through the entire process of creating a new character controller, step-by-step. This will cover a wide variety of features, and will give you an overview of all the different ways this character controller can be customized.

The tutorial can be followed without downloading the final project, but the completed tutorial project can be found here

Note 1: Throughout this tutorial, the code samples will often have chunks of excluded code in order to show only the important parts that you need to add or modify. The // (...) represents excluded code.

Note 2: For a more general DOTS tutorial, you may consult the various samples and tutorials in the EntityComponentSystemSamples

  1. Project Setup
  2. Standard Character Setup
  3. Double-Jump
  4. Sprinting
  5. Character Hits
  6. Enable Dynamics
  7. Moving Platforms
  8. Step Handling and Slope Changes
  9. Ignore Collisions With Tag
  10. Friction Surfaces
  11. Jump Pad (add forces to character)
  12. AI Character

Netcode tutorial

The following tutorial goes over all the steps required in order make the Standard Characters compatible with netcode prediction: