예제 #1
0
    public void ShowReviveVideo()
    {
        if (lifeVideo.IsLoaded())
        {
            lifeVideo.Show();
        }
        else
        {
            RequestLifeVideo();
        }


        //TEST RESPAWN IN GAME
        DieEvent.DesactivatePanel();
        Will.will.cannonTriggered.GetComponent <CannonParent>().Reactivate();
        StartCoroutine(IGLevelManager.countDownHandler());
    }
예제 #2
0
 private void OnRevivePlayer(object sender, EventArgs args)
 {
     DieEvent.DesactivatePanel();
     Will.will.cannonTriggered.GetComponent <CannonParent>().Reactivate();
     StartCoroutine(IGLevelManager.countDownHandler());
 }