Concept Flow - Async/await in Unity
Start Async Method
Hit await Task
Pause Method, Return to Caller
Task Runs in Background
Task Completes
Resume Method After await
Continue Execution
Method Ends
The async method starts, pauses at await while the task runs, then resumes after the task finishes.