IKSPDevModuleInfo Interface |
Namespace: KSPDev.KSPInterfaces
The IKSPDevModuleInfo type exposes the following members.
Name | Description | |
---|---|---|
![]() | GetDrawModulePanelCallback | Returns a method delegate to draw a custom panel. |
![]() | GetInfo | Returns description for the editor part's browser. |
![]() | GetModuleTitle | Returns module title to show in the editor part's details panel. |
![]() | GetPrimaryField | Return a string to be displayed in the main information box on the tooltip. |
public class MyModule : PartModule, IPartModule, IModuleInfo, IKSPDevModuleInfo { /// <inheritdoc/> public override string GetInfo() { return "<size=20><color=#ff0000ff><b>BLAH!</b></color></size>"; } }