示例#1
0
    public void ShowHelpScreen()
    {
        if (ActiveMenu == ActiveMenuType.Help)
        {
            return;
        }

        ActiveMenu = ActiveMenuType.Help;
        helpScreen.RandomizeEasterEgg();
    }
示例#2
0
    internal void ToggleHelpScreen()
    {
        GUICommon.Instance.PlayButtonPressSound();

        if (!helpScreen.Visible)
        {
            menu.Hide();
            helpScreen.Show();
            helpScreen.RandomizeEasterEgg();
        }
        else
        {
            helpScreen.Hide();
            menu.Show();
        }
    }
示例#3
0
    public void ToggleHelpScreen()
    {
        GUICommon.Instance.PlayButtonPressSound();

        if (!helpScreen.Visible)
        {
            GetTree().Paused = true;

            menu.Hide();
            helpScreen.Show();
            helpScreen.RandomizeEasterEgg();
        }
        else
        {
            helpScreen.Hide();
            menu.Show();
        }
    }
示例#4
0
 public void ShowHelpScreen()
 {
     SetActiveMenu("help");
     helpScreen.RandomizeEasterEgg();
 }