diff --git a/package.json b/package.json index 667a164..c4adf7a 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "displayName": "DragonECS-Unity", "description": "Integration with Unity for DragonECS", "unity": "2021.2", - "version": "0.3.21", + "version": "0.3.22", "repository": { "type": "git", "url": "https://github.com/DCFApixels/DragonECS-Unity.git" diff --git a/src/Internal/Editor/EcsGUI.cs b/src/Internal/Editor/EcsGUI.cs index 9b900d6..bd18a12 100644 --- a/src/Internal/Editor/EcsGUI.cs +++ b/src/Internal/Editor/EcsGUI.cs @@ -288,7 +288,7 @@ namespace DCFApixels.DragonECS.Unity.Editors while (next) { result++; - next = propsCounter.Next(false); + next = propsCounter.Next(true); } return result; }