code cleanup

This commit is contained in:
DCFApixels 2025-04-19 11:06:17 +08:00
parent 67477ef90d
commit 8418c81e34
8 changed files with 22 additions and 22 deletions

View File

@ -333,7 +333,7 @@ namespace DCFApixels.DragonECS.Unity.Editors
var x = Group.Splited.GetEnumerator(); var x = Group.Splited.GetEnumerator();
x.MoveNext(); x.MoveNext();
return x.Current.GetHashCode() ^ state; return x.Current.GetHashCode() ^ state;
}; }
} }
} }
#endregion #endregion

View File

@ -62,7 +62,7 @@ namespace DCFApixels.DragonECS.Unity.Internal
state ^= state >> 17; state ^= state >> 17;
state ^= state << 5; state ^= state << 5;
return state; return state;
}; }
} }
public static void DebugRect_Editor(params Rect[] rects) public static void DebugRect_Editor(params Rect[] rects)
{ {