Click or drag to resize

IPartModuleOnLoad Method

Notifies that the part's config is loaded.

Namespace:  KSPDev.KSPInterfaces
Assembly:  KSPDev_Utils.2.0 (in KSPDev_Utils.2.0.dll) Version: 2.0 for KSP v1.8+
Syntax
C#
void OnLoad(
	ConfigNode node
)
Request Example View Source

Parameters

node
Type: (Default Namespace)ConfigNode
Either the part's config node or a configuration from a save file.
Remarks
All the fields annotated by KSPField are already loaded at this moment. Use the node from this method to handle special values that are not supported by KSP.

See more details on the calling sequence in IPartModule.

See Also