Exemplo n.º 1
0
 public void GoBack()
 {
     LevelConfigPanel.SetActive(false);
     CreditsPanel.SetActive(false);
     ExitConfirmationPanel.SetActive(false);
     TutorialPanel.SetActive(false);
     MainMenuPanel.SetActive(true);
 }
Exemplo n.º 2
0
 void Start()
 {
     //PlayerPrefs.DeleteAll();
     MainMenuPanel.SetActive(true);
     LevelConfigPanel.SetActive(false);
     CreditsPanel.SetActive(false);
     TutorialPanel.SetActive(false);
     //GlowColor = PlayerPrefs.GetString("GlowColor");
     Sound = PlayerPrefs.GetInt("Sound");
     Level = PlayerPrefs.GetInt("Level");
     CheckSound();
     //CheckColor();
     CheckLevel();
 }
Exemplo n.º 3
0
 public void OpenLevelConfig()
 {
     //CheckColor();
     LevelConfigPanel.SetActive(true);
     MainMenuPanel.SetActive(false);
 }
Exemplo n.º 4
0
 public void LevelConf()
 {
     CheckLevel();
     //CheckColor();
     LevelConfigPanel.SetActive(true);
 }