Compare commits

..

2 Commits

Author SHA1 Message Date
DCFApixels
741d2f6ebd up version to 0.3.3 2025-03-15 17:10:33 +08:00
DCFApixels
bcefb63aa3 defines refactoring 2025-03-15 15:11:18 +08:00
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.2",
"version": "0.3.3",
"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 || ENABLE_DRAGONECS_ASSERT_CHEKS
#if DEBUG || DRAGONECS_STABILITY_MODE
if (span.IsNull) { /*_executeMarker.End();*/ Throw.ArgumentNull(nameof(span)); }
if (span.WorldID != _graphWorld.ID) { /*_executeMarker.End();*/ Throw.Quiery_ArgumentDifferentWorldsException(); }
#endif