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