public void continueButton()
    {
        SwitchToPanel.closeAllPanels(this.allHackingGamePanels);
        Time.timeScale = 1;

        blurScript.enabled = false;
    }
    /*this is used when player exists the game, want to close all panels, and not allow player to "pause" during the load*/
    public void closeAllPanels()
    {
        SwitchToPanel.closeAllPanels(this.allHackingGamePanels);

        Time.timeScale = 1;
        allowPauseKey  = false;
    }
 public void closeTutorialPanels()
 {
     SwitchToPanel.closeAllPanels(allTutorialPanels);
 }
Beispiel #4
0
 /*closes all the item info panels*/
 void closeAllItemContent()
 {
     SwitchToPanel.closeAllPanels(itemContentsArray);
 }
Beispiel #5
0
 public void closeAllPanels()
 {
     SwitchToPanel.closeAllPanels(allStartUIPanels);
 }