Click or drag to resize

AbstractPartModuleOnAwake Method

Initializes a new instance of the module on the part.

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 OnAwake()
Request Example View Source

Implements

IPartModuleOnAwake
Remarks
Called on a newly created part. Note, that this method is a bad place to interact with the other modules on the part since module initialization order is not defined.

See more details on the calling sequence in IPartModule.

See Also