U3D MonoBehaviour.InvokeRepeating 和 MonoBehaviour.Invoke

InvokeRepeating(string methodname,float time,float reapetRate)

这个是 在time秒时间后 每隔reapetRate 秒调用methodname

Invoke(string methodname,float time)

这个是 在time秒时间后 调用methodname

原文地址:https://www.cnblogs.com/xinianxinqix/p/5348462.html