From a0158918a7cf3793a06db2d64d1ee7bb3f215692 Mon Sep 17 00:00:00 2001 From: Mikhail <99481254+DCFApixels@users.noreply.github.com> Date: Sat, 18 May 2024 16:15:47 +0800 Subject: [PATCH] fix --- src/Internal/Editor/EcsGUI.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }