From 2ed1ff725e8eb076dce18f9a3338598b8bcfd0e3 Mon Sep 17 00:00:00 2001 From: "aube.lee" Date: Fri, 24 Jan 2025 16:29:10 +0900 Subject: [PATCH] =?UTF-8?q?bootStrapper=20=EC=98=A4=ED=83=80=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Gameton-06/Assets/Gameton/Scripts/Common/BootStrapper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gameton-06/Assets/Gameton/Scripts/Common/BootStrapper.cs b/Gameton-06/Assets/Gameton/Scripts/Common/BootStrapper.cs index f765472c..7643f51c 100644 --- a/Gameton-06/Assets/Gameton/Scripts/Common/BootStrapper.cs +++ b/Gameton-06/Assets/Gameton/Scripts/Common/BootStrapper.cs @@ -9,7 +9,7 @@ namespace TON public class BootStrapper { - private const string BootStrapperMenuPath = "Game One/BootStrapper/Activate Ingame System"; + private const string BootStrapperMenuPath = "Gameton/BootStrapper/Activate Ingame System"; private static bool IsActivateBootStrapper { get => UnityEditor.EditorPrefs.GetBool(BootStrapperMenuPath, false); @@ -43,7 +43,7 @@ namespace TON Main.Singleton.Initialize(); // TODO : Custom Order After System Load - // UIManager.Show(UIList.IngameUI); + UIManager.Show(UIList.ControllerUI); // UIManager.Show(UIList.LogUI); } }