public static void ShowGameMenu() { PanelMgr mgr = NavigationUtil.PanelMgr; if (mgr != null) { Debug.Log("Showing Game Menu!"); mgr.OpenGameMenu(); } else { Debug.Log("PanelMgr script missing!"); } }
public static void ShowInvitationPanel() { PanelMgr mgr = NavigationUtil.PanelMgr; if (mgr != null) { Debug.Log("Showing Invitation Panel!"); mgr.OpenInvitationPanel(); } else { Debug.Log("PanelMgr script Missing"); } }
public static void ShowPlayingPanel() { PanelMgr mgr = NavigationUtil.PanelMgr; if (mgr != null) { Debug.Log("Showing Playing Panel!"); mgr.OpenPlayingPanel(); } else { Debug.Log("PanelMgr script missing!"); } }