DOTS

Download

Unity Cheat Sheet: #45

World Management

  • Access main simulation with World.DefaultGameObjectInjectionWorld
  • Create new systems with World.CreateSystem<T>() to instantiate a system of type T
  • Get existing or create new systems with World.GetOrCreateSystem<T>() which retrieves or creates if needed
  • Clean up systems with World.DestroySystem<T>() to remove a specific system from the world

Entity Manager

  • Create game objects with entityManager.CreateEntity() to initialize new entities
  • Remove game objects with entityManager.DestroyEntity() to eliminate entities from simulation
  • Attach components with entityManager.AddComponent<T>(entity) to add component T to an entity
  • Remove components with entityManager.RemoveComponent<T>(entity) to detach component T
  • Check component existence with entityManager.HasComponent<T>(entity) to verify if entity has component T
  • Access component data with entityManager.GetComponentData<T>(entity) to retrieve T's data
  • Modify component data with entityManager.SetComponentData<T>(entity, data) to update component values

Entity Queries

  • Count matching entities with entityQuery.CalculateEntityCount() to get number of filtered entities
  • Get entity collections with entityQuery.ToEntityArray(Allocator) to retrieve matching entities
  • Filter by modified components with entityQuery.SetChangedVersionFilter(ComponentType) to find recently updated entities

System Lifecycle

  • Control system activity with systemBase.Enabled to toggle execution state
  • Initialize system with systemBase.OnCreate() which is called at system instantiation
  • Run per-frame logic with systemBase.OnUpdate() containing the main execution logic
  • Clean up resources with systemBase.OnDestroy() called when system is disposed

Job System

  • Wait for job completion with jobHandle.Complete() to ensure job has finished executing
  • Check job status with jobHandle.IsCompleted to determine if job processing is done

Burst Compilation

  • Optimize functions with BurstCompiler.CompileFunctionPointer(delegate) to create high-performance native code
  • Check optimization status with BurstCompiler.IsEnabled to determine if Burst is active

Native Containers

  • Access array size with nativeArray.Length to get element count
  • Release memory with nativeArray.Dispose() to free allocated resources
  • Validate array with nativeArray.IsCreated to check if initialized
  • Add queue items with nativeQueue.Enqueue(item) to insert at end of queue
  • Remove queue items with nativeQueue.Dequeue() to get and remove front item
  • Check queue status with nativeQueue.IsEmpty to determine if queue contains items

Show More