Ejemplo n.º 1
0
 public static void SetEntityParent(Entity entity, ECS ecs)
 {
     if (DebugParents.ContainsKey(entity))
     {
         DebugParents[entity] = ecs;
     }
     else
     {
         DebugParents.Add(entity, ecs);
     }
 }
Ejemplo n.º 2
0
 public void _SetDebugParent(ECS ecs)
 {
     EntityDebug.SetEntityParent(this, ecs);
 }