Unity Comment attendre quelques secondes sans coroutine

void CallMe() {
  	// Invoke("MethodName", Delay seconds as float);
	Invoke("CallMeWithWait", 1f);
}

void CallMeWithWait() {
	// Do something
}
Doge Amazedo