Wednesday, August 21, 2019

ienumerator start at seconds unity3d

in void start put  - StartCoroutine(startToShow());




   private IEnumerator startToShow()
        {
            yield return new WaitForSeconds(2);
            ToRight();
        }

No comments:

Post a Comment