Exemplo n.º 1
0
 public static void Win()
 {
     GameObject.Find("Popup").GetComponent <Text>().text = "Success";
     StepManager.Pause();
     IsGameOver = true;
 }
Exemplo n.º 2
0
 public static void Fail()
 {
     GameObject.Find("Popup").GetComponent <Text>().text = "Failed";
     StepManager.Pause();
     IsGameOver = true;
 }