IEnumerator Countdown() { yield return(new WaitForSeconds(1)); if (timer > 0) { timer--; drawTimer.UpdateUI(); StartCoroutine(Countdown()); } }