コード例 #1
0
ファイル: spaceship.cs プロジェクト: r00tk1d/dreamRunner
 void OnCollisionEnter2D(Collision2D col)
 {
     if (col.gameObject.tag == "bonusShip")
     {
         Destroy(col.gameObject);
         ship.destroyBonusshipPlay();
     }
 }
コード例 #2
0
ファイル: Obstacle.cs プロジェクト: r00tk1d/dreamRunner
 //Destroy player if obstacle hits player
 void OnCollisionEnter2D(Collision2D col)
 {
     if (col.gameObject.tag == "Player")
     {
         crashSound.Play();
         FindObjectOfType <GameManager>().EndGame();
         Destroy(col.gameObject);
     }
     if (col.gameObject.tag == "bonusShip")
     {
         Destroy(col.gameObject);
         ship = GameObject.FindWithTag("Player").GetComponent <spaceship>();
         ship.destroyBonusshipPlay();
     }
 }