Introducing UAsync
Nowadays, if you want to use a structured way for your flow control in Unity, you basically have 4 options:
- Write your own
Task
library (which might use coroutines) - Use coroutines. This means that you
StartCoroutine
in a lot of places and insert try catch code when errors occur. This ...