From ecf1234bfde147d443f9c409fab14ca5708dcf04 Mon Sep 17 00:00:00 2001 From: playinful <82474412+playinful@users.noreply.github.com> Date: Sat, 30 Mar 2024 15:17:56 -0400 Subject: [PATCH] make it so that it auto sorts by alphabet when you lanuch the editor --- Assets/Scripts/LevelEditor/Editor.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Assets/Scripts/LevelEditor/Editor.cs b/Assets/Scripts/LevelEditor/Editor.cs index 48a9d2453..4297dc15d 100644 --- a/Assets/Scripts/LevelEditor/Editor.cs +++ b/Assets/Scripts/LevelEditor/Editor.cs @@ -106,6 +106,7 @@ namespace HeavenStudio.Editor foreach (var minigame in EventCaller.instance.minigames.Values) AddIcon(minigame); + GridGameSelectorRect.GetComponent().Sort("alphabet"); UpdateEditorStatus(true); #if HEAVENSTUDIO_PROD