Example #1
0
 public void ClickHelpExit()
 {
     AudioManager.PlaySound(8);
     UITween.helpSectionActive(false);
     UITween.optionsMenuActive(true);
     UITween.btnSoundsActive(true);
 }
Example #2
0
    public void ClickMenuMiniMap()
    {
        AudioManager.PlaySound(7);
        UITween.optionsActive(true);
        UITween.optionsMenuActive(true);
        UITween.btnSoundsActive(true);

        UITween.helpSectionActive(false);
        UITween.optionsLevelsActive(false);
        UITween.optionsGameActive(false);
        UITween.warrantSectionActive(false);

        UITween.menuSlideOut();
        UITween.rctfMapSlide(0, 1);
        UITween.menuActive(false);
    }
Example #3
0
    public static void TriggerWarrant()
    {
        UITween.optionsActive(true);
        UITween.warrantSectionActive(true);

        UITween.btnSoundsActive(false);
        UITween.optionsMenuActive(false);
        UITween.helpSectionActive(false);
        UITween.optionsLevelsActive(false);
        UITween.optionsGameActive(false);

        UITween.gameSlideOut();
        UITween.rctfMapSlide(0, 1);
        UITween.gameActive(false);
        GameManager.SetPlayerPause(true);
    }