コード例 #1
0
        public static void ShowGameMenu()
        {
            PanelMgr mgr = NavigationUtil.PanelMgr;

            if (mgr != null)
            {
                Debug.Log("Showing Game Menu!");
                mgr.OpenGameMenu();
            }
            else
            {
                Debug.Log("PanelMgr script missing!");
            }
        }
コード例 #2
0
        public static void ShowInvitationPanel()
        {
            PanelMgr mgr = NavigationUtil.PanelMgr;

            if (mgr != null)
            {
                Debug.Log("Showing Invitation Panel!");
                mgr.OpenInvitationPanel();
            }
            else
            {
                Debug.Log("PanelMgr script Missing");
            }
        }
コード例 #3
0
        public static void ShowPlayingPanel()
        {
            PanelMgr mgr = NavigationUtil.PanelMgr;

            if (mgr != null)
            {
                Debug.Log("Showing Playing Panel!");
                mgr.OpenPlayingPanel();
            }
            else
            {
                Debug.Log("PanelMgr script missing!");
            }
        }