English
Appearance
Component.OnFixedUpdate()
Component
如果注册此方法,会在固定的时间间隔内被调用,而不是每一帧都被调用。
调用之间的默认时间为 0.02 秒(50 次调用/秒)。使用 Time.fixedDeltaTime 来访问该值。
void
OnForceUpdate(): void { // 在固定的时间间隔内被调用 Debug.log("OnForceUpdate"); }