Skip to content

Commit 88bdf8b

Browse files
authored
Merge pull request #272 from Feesh7/fix-netobj-sorting
Fix NetworkedObject sorting in editor extension
2 parents cf16315 + 2f59b0e commit 88bdf8b

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)