Name | Description |
---|---|
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 |