Exemplo n.º 1
0
 public void nextRepeat()
 {
     // playButton.gameObject.SetActive(true);
     tapScript = TapScript.GetComponent <DetectTaps>();
     TapScript.SetActive(true);
     tapScript.enabled = true;
 }
Exemplo n.º 2
0
 public void startGame()
 {
     btnPlay.gameObject.SetActive(false);
     Debug.Log("Starting the game");
     tapScript = TapScript.GetComponent <DetectTaps>();
     TapScript.SetActive(true);
     tapScript.enabled = true;
 }