Click or drag to resize

AbstractPartModuleOnLoad Method

Notifies that the part's config is loaded.

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 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.

Implements

IPartModuleOnLoad(ConfigNode)
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