C# (CSharp) Nez.Systems 네임스페이스

클래스들

이름 설명
CoroutineManager basic CoroutineManager. Coroutines can do the following: - yield return null (tick again the next frame) - yield return Coroutine.waitForSeconds( 3 ) (tick again after a 3 second delay) - yield return Coroutine.waitForSeconds( 5.5f ) (tick again after a 5.5 second delay) - yield return startCoroutine( another() ) (wait for the other coroutine before getting ticked again)
CoroutineManager.CoroutineImpl internal class used by the CoroutineManager to hide the data it requires for a Coroutine