Ejemplo n.º 1
0
 public void SubmitScoreButton()
 {
     if (username.text == "" || username.text.Contains(" ") || username.text.Contains(".") || username.text.Contains(","))
     {
         Debug.Log(username.text);
         notify.text = "Proper username please";
         StartCoroutine(Notification());
     }
     else
     {
         SubmitHighScore.AddNewHighScore(username.text, score.showScoreInt);
     }
 }
Ejemplo n.º 2
0
 private void Awake()
 {
     instance = this;
 }