public void SelectTwoPlayerGamePlay()
 {
     TwoPlayerWarningButton.SetActive(false);
     isSelectedGameType = true;
     TwoPlayerGameObject.SetActive(true);
     FourPlayerGameObject.SetActive(false);
     //			TwoPlayerButton.SetActive (true);
     FourPlayerButton.SetActive(false);
 }
Ejemplo n.º 2
0
 public void SelectFourPlayerGamePlay()
 {
     TwoPlayerGameObject.SetActive(false);
     FourPlayerGameObject.SetActive(FourPlayerToggle.isOn);
 }