コード例 #1
0
ファイル: Player.cs プロジェクト: djcharron741/Flappy
 private void Die()
 {
     Destroy(gameObject);
     //GetComponent<AudioSource> ().Play ();
     deathSound.Play();
     Debug.Log("DEATHHHHHH!!!");
     playerDeathEventChannel.NotifyPlayerDeath();
 }
コード例 #2
0
ファイル: Player.cs プロジェクト: 9vies/flappy-bird-demo
 private void Die()
 {
     playerDeathEventChannel.NotifyPlayerDeath();
     Destroy(gameObject);
 }