Esempio n. 1
0
    private IEnumerator EnterCoroutine()
    {
        //fade in
        fadeEffect.beginFadeIn_WithBlur(0.25f, 0.03f, null);
        //robot animation
        robotController.BehaveScare();
        yield return(new WaitForSeconds(3f));

        robotController.PointExit();
        handleController.gameObject.SetActive(true);
        yield return(null);
    }