↧
Answer by gregzo
You cannot use yield in Update()! Instead of calling Application.LoadLevel, call a function which will yield WaitForSeconds(5) and then load the next level. Try it, if you still have trouble with it...
View ArticleAnswer by BiG
I would modify the script as below. Just add the sound and the "stage complete" text! var countdown = false; function Update(){ var bricks = GameObject.FindWithTag("brick"); if(bricks == null...
View Article