class in AdvancedSceneManager.Utility / Inherits from: CustomYieldInstruction
Represents a async operation that returns a value.
| Member |
Description |
Async<T> complete |
Gets a Utility.Async that is already completed. |
| Member |
Description |
bool keepWaiting |
Indicates if coroutine should be kept suspended. |
T value |
Gets the value that was produced by the async operation. |
| Member |
Description |
Async<T> FromResult(T result) |
Gets a completed Utility.Async with the specified value. |
| Member |
Description |
void OnComplete(Action<T> callback) |
Calls the callback when the async operation is complete. |