Exemplo n.º 1
0
 void OnTriggerEnter2D(Collider2D other)
 {
     if (this.shouldAward)
     {
         score.Add();
         jumper.IncreaseDifficulty();
         sound.Play();
         this.shouldAward = false;
     }
 }