Click or drag to resize

IsPhysicalObjectFixedUpdate Method

Notifies that the fixed rate frame is being handled.

Namespace:  KSPDev.KSPInterfaces
Assembly:  KSPDev_Utils.2.6 (in KSPDev_Utils.2.6.dll) Version: 2.6 for KSP v1
Syntax
C#
void FixedUpdate()
Request Example View Source
Remarks
This method is called by Unity via reflections, so it's not required to implement the interface to get notified. Though, it's a good idea to implement this interface in the objects and modules that need the physics updates. It makes the code more readable.
See Also