Esempio n. 1
0
    //=============private=================//

    private void _CheckDead()
    {
        if (hitPoint <= 0)
        {
            show.text  = "Marisa You Win!";
            show.color = Color.yellow;
            Destroy(hitBar.gameObject);
            this.GetComponent <ReimuBulletManager>().Clear();
            deadSend.BossDead();
            Destroy(this.gameObject);
        }
        return;
    }