Esempio n. 1
0
 //activer et desactiver menu level
 public void EnableDisableMenuLevel()
 {
     if (booMenuLevel)
     {
         MenuLevel.SetActive(false);
         booMenuLevel = false;
     }
     else
     {
         MenuLevel.SetActive(true);
         booMenuLevel = true;
     }
 }
Esempio n. 2
0
 void Start()
 {
     MainMenu.SetActive(true);
     MenuOptions.SetActive(false);
     MenuLevel.SetActive(false);
 }