UnityFiberInstruction.cs
Go to the documentation of this file.
65 public static FiberInstruction WaitForFixedUpdate = new ObjectInstruction(new UnityEngine.WaitForFixedUpdate());
73 public static FiberInstruction WaitForEndOfFrame = new ObjectInstruction(new UnityEngine.WaitForEndOfFrame());
Represents a fiber instruction to be processed by a FiberScheduler.
Definition: UnityFiberInstruction.cs:43
Wraps an object as an instruction
Definition: ObjectInstruction.cs:34
Definition: AggregateException.cs:31
Represents a fiber instruction to be processed by a FiberScheduler.
Definition: FiberInstruction.cs:43
static FiberInstruction WaitForEndOfFrame
Convenience coroutine to send a WaitForEndOfFrame instruction to the scheduler.
Definition: UnityFiberInstruction.cs:73
static FiberInstruction WaitForFixedUpdate
Convenience coroutine to send a WaitForFixedUpdate instruction to the scheduler.
Definition: UnityFiberInstruction.cs:65
Definition: Fiber.ContinueWith.cs:6
static FiberInstruction WaitForSeconds(float seconds)
Convenience coroutine to send a WaitForSeconds instruction to the scheduler.
Definition: UnityFiberInstruction.cs:54