예제 #1
0
    private IEnumerator TesSuperCoroutine005()
    {
        Debug.Log($"Time.Frame={Time.frameCount}");
        var inner = new SuperCoroutine(TesSuperCoroutine006());

        AsyncManager.Invoke(1, () => { inner.StopCoroutine(); });

        yield return(inner.WaitDone());

        Debug.Log("TesSuperCoroutine005");
    }