↧
Answer by PatHightree
Make sure you call your coroutine with : StartCoroutine(checkForDelay());
View ArticleAnswer by gruhm
The code in a Coroutine after the yield return is going to run concurrently with the method that called it, So the delay effects code within the coroutine called after the yield. If you simply want to...
View Article