hi to all ;)
i have a lot of problems to implement a method that uses a WaitForSEconds function;
i explain better my situation.
in Update function i call a method that use waitforsecond :
void Update() {
Wait();
}
IEnumerator Wait() {
yield return new WaitForSeconds(5);
}
but in this way nothing happened.
somebody can help me?
thanks ;)
↧