diff --git a/Assets/Scripts/SubjectToggle.cs b/Assets/Scripts/SubjectToggle.cs index 6073d16..7f581df 100644 --- a/Assets/Scripts/SubjectToggle.cs +++ b/Assets/Scripts/SubjectToggle.cs @@ -36,10 +36,12 @@ public class SubjectToggle : BaseItem, IPointerEnterHandler, IPointerExitHandler { Bootstrap.Instance.uiManager.ShowPanel(this, E_UI_Layer.Top, (panel) => { - Bootstrap.Instance.uiManager.HidePanel(); + Bootstrap.Instance.uiManager.ShowPanel(this, E_UI_Layer.Top, (panel) => + { + Bootstrap.Instance.uiManager.HidePanel(); Debug.Log("¼ÓÔØ³¡¾°³É¹¦"); Bootstrap.Instance.eventCenter.EventTrigger(Enum_EventType.UpdateProgress, 2f); - + }); }); }); });