예제 #1
0
    void Update()
    {
        if (currentHealth > health)
        {
            Blood.BloodBoom();
            currentHealth = health;
        }

        if (health <= 0)
        {
            Invoke("DestroyEnemy", 0.1f);
            for (int i = 0; i < GetComponentsInChildren <SwordPiercing>().Length; i++)
            {
                GetComponentsInChildren <SwordPiercing>()[i].SpuwnNewSword();
            }
        }
    }