 | LinkActorType Enumeration |
Defines an actor that changes KAS link.
Namespace:
KASAPIv2
Assembly:
KAS-API-v2 (in KAS-API-v2.dll) Version: KAS API v2
Syntax
Members
| Member name | Value | Description |
---|
| None | 0 | Actor is unspecified. |
| API | 1 | Third-party code has affected the link during its normal workflow. |
| Physics | 2 | Link has changed as a result of physics effect. |
| Player | 3 | Player input has affected the link state. |
Remarks
The implementations of
ILinkSource and
ILinkTarget may check the
type to determine how the action needs to be presented to the player. The type
API must never be presented to the player, it's used by the internal
logic to manage the sate of the links. For all the other types it's up to the implementation how
to present it.
Examples
public static void DisconnectParts(Part srcPart) {
var source = srcPart.FindModulesImplementing<ILinkSource>()
.FirstOrDefault(s => s.linkTarget != null);
if (source == null) {
Debug.LogWarningFormat("Part is not connected to anything");
return;
}
source.BreakCurrentLink(LinkActorType.API);
}
See Also