![]() | IKasEvents Interface |
Namespace: KASAPIv2
The IKasEvents type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() | OnLinkBroken | Triggers when a link between two parts has been broken. |
![]() ![]() | OnLinkCreated | Triggers when a link between two parts has been successfully established. |
![]() ![]() | OnStartLinking | Triggers when a source has initiated linking mode. |
![]() ![]() | OnStopLinking | Triggers when a source has stopped linking mode. |
public class KasEventsExample1: PartModule { public override void OnAwake() { base.OnAwake(); KASAPI.KasEvents.OnStartLinking.Add(LinkStarted); KASAPI.KasEvents.OnStopLinking.Add(LinkStopped); KASAPI.KasEvents.OnLinkCreated.Add(LinkCreated); KASAPI.KasEvents.OnLinkBroken.Add(LinkBroken); } void OnDestroy() { KASAPI.KasEvents.OnStartLinking.Remove(LinkStarted); KASAPI.KasEvents.OnStopLinking.Remove(LinkStopped); KASAPI.KasEvents.OnLinkCreated.Remove(LinkCreated); KASAPI.KasEvents.OnLinkBroken.Remove(LinkBroken); } void LinkStarted(ILinkSource source) { DebugEx.Info("Link started by: {0}", source); } void LinkStopped(ILinkSource source) { DebugEx.Info("Link stopepd by: {0}", source); } void LinkCreated(IKasLinkEvent ev) { DebugEx.Info("Link created: {0} <=> {1}", ev.source, ev.target); } void LinkBroken(IKasLinkEvent ev) { DebugEx.Info("Link broken: {0} <=> {1}", ev.source, ev.target); } }