示例#1
0
 void OnTriggerEnter2D(Collider2D other)
 {
     if (other.gameObject.name == "Player")
     {
         coinSound.Play();
         theScoreManager.AddExtraPoint(scoreToGive);
         gameObject.SetActive(false);
     }
 }