예제 #1
0
    //更新
    void Update()
    {
        m_blackFadeOut.StartAnimation();

        if (m_blackFadeOut.IsEnd() == true)
        {
            m_ready.StartAnimation();
        }

        if (m_ready.IsEnd() == true)
        {
            m_isPlay = true;
        }

        PlayerDead();

        EnemyDead();
    }