IPartModuleOnStart Method |
Initializes module's state after all other modules have been created.
Namespace:
KSPDev.KSPInterfaces
Assembly:
KSPDev_Utils.2.0 (in KSPDev_Utils.2.0.dll) Version: 2.0 for KSP v1.8+
Syntaxvoid OnStart(
PartModuleStartState state
)
Request Example
View SourceParameters
- state
- Type: (Default Namespace)PartModuleStartState
State that specifies the situation of the vessel.
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