Compare commits

..

No commits in common. "741d2f6ebd8c9fa129b7179640da364d0a1f9810" and "e2dcd8a40230d041ddd55b5225577d1521571e9e" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
"displayName": "DragonECS-Graphs",
"description": "Entity Graphs for DragonECS",
"unity": "2020.3",
"version": "0.3.3",
"version": "0.3.2",
"repository": {
"type": "git",
"url": "https://github.com/DCFApixels/DragonECS-Graphs.git"

View File

@ -64,7 +64,7 @@ namespace DCFApixels.DragonECS.Graphs.Internal
private SubGraphMap ExecuteFor_Internal(EcsSpan span, JoinMode mode)
{
//_executeMarker.Begin();
#if DEBUG || DRAGONECS_STABILITY_MODE
#if DEBUG || ENABLE_DRAGONECS_ASSERT_CHEKS
if (span.IsNull) { /*_executeMarker.End();*/ Throw.ArgumentNull(nameof(span)); }
if (span.WorldID != _graphWorld.ID) { /*_executeMarker.End();*/ Throw.Quiery_ArgumentDifferentWorldsException(); }
#endif