↧
Comment by AlwaysSunny
WaitForSeconds is used in CoRoutines: http://docs.unity3d.com/$$anonymous$$anual/Coroutines.html
View ArticleComment by Wingman526
I read that on the unity help, just not sure what that means entirely. I attempted to add a function within my function to rectify as the link stated that you provided but its stating the function I...
View ArticleComment by Wingman526
#pragma strict var speed : float = 5f; var $$anonymous$$issile : GameObject; function Update () { function Delay () { WaitForSeconds(30); } transform.position =...
View ArticleComment by julianjulianov
var speed : float = 5f; var Missile : GameObject; float _delayTime; void Update () { _delayTime += Time.deltaTime; if (_delayTime > 30f) { transform.position =...
View Article