Exemple #1
0
 private void Start()
 {
     Time.timeScale = 0;
     //When game starts, only easy button is shown
     for (int x = 1; x < difficultyButtons.Length; x++)
     {
         difficultyButtons[x].SetActive(false);
     }
     wallManager.ChangeDifficulty();
 }