public void LastDialog() { if (lastDialogGUI != null) { lastDialogGUI.Show(); } }
public void ShowIngameGUI() { if (ingameGUI != null) { ingameGUI.Show(); } }
public void ShowGameOverGUI(string title) { if (gameOverGUI != null) { gameOverGUI.Show(); } }
public void Switch() { if (srcPanel != null) { srcPanel.Hide(); } else { Debug.Log("SwitchPanel.Switch(): srcPanel == null"); } if (destPanel != null) { destPanel.Show(); } else { Debug.Log("SwitchPanel.Switch(): destPanel == null"); } }