cancellationToken | Optional cancellation token used to signal cancellation. |
Awaitable resuming after all Unity subsystem have run for the current frame.
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"); }