diff --git a/Gameton-06/Assets/Gameton/Scripts/Scenes/ShopScene.cs b/Gameton-06/Assets/Gameton/Scripts/Scenes/ShopScene.cs index e4cd5e6e..815879f9 100644 --- a/Gameton-06/Assets/Gameton/Scripts/Scenes/ShopScene.cs +++ b/Gameton-06/Assets/Gameton/Scripts/Scenes/ShopScene.cs @@ -19,6 +19,7 @@ namespace TON } UIManager.Show(UIList.ShopUI); + UIManager.Show(UIList.OptionUI); } public override IEnumerator OnEnd() @@ -26,6 +27,7 @@ namespace TON yield return null; UIManager.Hide(UIList.ShopUI); + UIManager.Hide(UIList.OptionUI); } } }