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