예제 #1
0
        private IEnumerator DelyPlay()
        {
            yield return(new WaitForSeconds(delyTime));

            if (animPlayer != null)
            {
                animPlayer.duration      = speed;
                animPlayer.onAutoPlayEnd = OnAnimPlayCallBack;
                animPlayer.SetVisible(true);
                animPlayer.StepActive();
            }
        }