예제 #1
0
        IEnumerator Coroutine4(string value)
        {
            yield return(YieldInstructioner.GetWaitForEndOfFrame());

            Debug.Log("协程 Coroutine4 执行!参数:" + value);
        }
예제 #2
0
        IEnumerator Coroutine2()
        {
            yield return(YieldInstructioner.GetWaitForEndOfFrame());

            Debug.Log("协程 Coroutine2 执行!");
        }