Browse Source

Fix compiler error when using the Svelto profilers

tags/Rel1
sebas77 6 years ago
parent
commit
09198213a3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ECS/EnginesRoot.cs

+ 1
- 1
ECS/EnginesRoot.cs View File

@@ -49,7 +49,7 @@ namespace Svelto.ECS
_implementedInterfaceTypes = new Dictionary<Type, Type[]>();

#if ENGINE_PROFILER_ENABLED && UNITY_EDITOR
GameObject debugEngineObject = new GameObject("Engine Debugger");
UnityEngine.GameObject debugEngineObject = new UnityEngine.GameObject("Engine Debugger");
debugEngineObject.gameObject.AddComponent<EngineProfilerBehaviour>();
#endif
}


Loading…
Cancel
Save