Method | Description | |
---|---|---|
RepeatForIterations ( Action |
Convenience coroutine to repeat an action for the specified number of iterations at the scheduler frequency.
|
Method | Description | |
---|---|---|
RepeatForSeconds ( Action |
Convenience coroutine to repeat an action for the specified duration at the scheduler frequency. This is internal until there is a scheduler agnostic way to handle delta time. |
|
YieldForSeconds ( float seconds ) : |
Convenience coroutine to send a YieldForSeconds instruction to the scheduler and wait on it to complete.
|
public static RepeatForIterations ( Action |
||
action | Action |
/// The action to execute. /// |
iterations | int | /// The iterations to execute for. /// |
return | IEnumerator |