Skip to content

Commit 2f59b0e

Browse files
committed
fix: NetworkedInstanceId sorting fixed in editor
1 parent cf16315 commit 2f59b0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MLAPI-Editor/PostProcessScene.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public static void ProcessScene()
1616
traverseSortedObjects.Sort((x, y) =>
1717
{
1818
List<int> xSiblingIndex = x.TraversedSiblingIndex();
19-
List<int> ySiblingIndex = x.TraversedSiblingIndex();
19+
List<int> ySiblingIndex = y.TraversedSiblingIndex();
2020

2121
while (xSiblingIndex.Count > 0 && ySiblingIndex.Count > 0)
2222
{

0 commit comments

Comments
 (0)