Is the coroutine done?
Coroutines and Callbacks in Unity
How to have a coroutine ring a bell when it’s done
When a Coroutine
is started like this in Unity:
StartCoroutine(CoroutineName(vars));
NextCommand();
a piece of code runs outside the Update pattern. This means that the execution of that code is not restricted…