Click or drag to resize

AbstractPartModuleOnStart Method

Initializes module's state after all other modules have been created.

Namespace:  KSPDev.PartUtils
Assembly:  KSPDev_Utils.2.5 (in KSPDev_Utils.2.5.dll) Version: 2.5 for KSP v1
Syntax
C#
public override void OnStart(
	PartModuleStartState state
)
Request Example View Source

Parameters

state
Type: (Default Namespace)PartModuleStartState
State that specifies the situation of the vessel.

Implements

IPartModuleOnStart(PartModuleStartState)
Remarks
Note, that this is not the right place to start physics on the part. This callback is good to acquire references to the the other modules on the part, and for establishing the internal state of the module.
See Also