Click or drag to resize

IsPhysicalObjectFixedUpdate Method

Notifies that the fixed rate frame is being handled.

Namespace:  KSPDev.KSPInterfaces
Assembly:  KSPDev_Utils.1.1 (in KSPDev_Utils.1.1.dll) Version: 1.1 for KSP v1.6+
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