The Coroutine class implements an asynchronous function that can be repeatedly called to continue the execution where it last called yield.
yield
This is similar to Component Coroutines with the main difference being that the Coroutine must be manually updated each frame by a call to continue.
Component Coroutines
Optional
Determines if the courotine finished.
Aborts the execution and releases the function.
Continues the coroutine.
The Coroutine class implements an asynchronous function that can be repeatedly called to continue the execution where it last called
yield.Note
This is similar to
Component Coroutineswith the main difference being that the Coroutine must be manually updated each frame by a call to continue.