Invoke方法可以制定一个函数延迟调用。
1
2
3
|
void
TestFunc {
Debug.Log(
"Test"
);
}
|
例如要延迟5秒调用上面的TestFunc函数,可以这样
1
|
Invoke(
"TestFunc"
, 5f);
|