Published
- 1 min read
unity how to wait for seconds without coroutine
The solution for this is noted below
unity how to wait for seconds without coroutine
Solution
void CallMe() {
// Invoke("MethodName", Delay seconds as float);
Invoke("CallMeWithWait", 1f);
}
void CallMeWithWait() {
// Do something
}
Try other methods by searching on the site. That is if this doesn’t work