cancellationToken | Optional cancellation token used to signal cancellation. |
Resumes execution after all Unity subsystems have run for the current frame.
Note: This method can only be called from the main thread and always completes on main thread. Also, in Editor, this awaitable is incompatible with BatchMode and requires the game to be in play mode (in edit mode, it will never complete).
private async Awaitable DoSomethingAsync() { Debug.Log("Before game systems got updated for current thread"); await Awaitable.EndOfFrameAsync(); Debug.Log("After game systems got updated for current thread"); }