Skip to content

Latest commit

 

History

History
63 lines (42 loc) · 2.28 KB

DEVELOPER.md

File metadata and controls

63 lines (42 loc) · 2.28 KB

Developer

Collection of links/references/guides etc. for developers.

Table of Contents

Resources

DOTS

Guidelines

  • Systems should only have simple & definable tasks (Keep It Simple Stupid).
  • If components always or mostly are used together they should probably be combined.
  • Use keyword in for readonly components & ref for mutable components.
  • Use .Run() for systems with inexpensive update & .Schedule(handle) for "heavy" systems.
  • Use UpdateBefore[typeof(/* system */)] etc to define ordering of systems.

Editor

  • Assets > Create > DOTS - Template code.
  • Window > Analysis > Entity Debugger - DOTS debugger window.

Links

Physics

Navigation

Links

Netcode

Links