GameOver() public method

public GameOver ( ) : void
return void
Ejemplo n.º 1
0
    void Died()
    {
        status.died = true;
        gameRuleCtrl.GameOver();

        // オーディオの再生
        deathSeAudio.Play();
    }
Ejemplo n.º 2
0
    void Died()
    {
        status.died = true;
        gameRuleCtrl.GameOver();

        // 오디오 재생.
        deathSeAudio.Play();
    }
Ejemplo n.º 3
0
 // If player is dying...
 void Died()
 {
     // Die flag on.
     this.status.died = true;
     gameRuleCtrl.GameOver();
 }
Ejemplo n.º 4
0
 void Died()
 {
     status.died = true;
     gameRuleCtrl.GameOver();
 }
Ejemplo n.º 5
0
 //死んだ
 void Died()
 {
     status.died = true;
     StartCoroutine(gameRuleCtrl.GameOver());
 }