Метод | Описание | |
---|---|---|
startCoroutine ( IEnumerator enumerator ) : ICoroutine |
adds the IEnumerator to the CoroutineManager. Coroutines get ticked before Update is called each frame.
|
Метод | Описание | |
---|---|---|
IUpdatableManager ( ) : void | ||
tickCoroutine ( CoroutineImpl coroutine ) : bool |
ticks a coroutine. returns true if the coroutine should continue to run next frame. This method will put finished coroutines back in the Pool!
|
public startCoroutine ( IEnumerator enumerator ) : ICoroutine | ||
enumerator | IEnumerator | Enumerator. |
Результат | ICoroutine |