![]() | KASAPIv2 Namespace |
KAS API namespace. The third-party code must use the types and interfaces from this namespace instead of depending on the mod modules.
Each API release has a version. Once the API is released to the public, its methods cannot be changed. In case of a new functionality is relased, a new version (and the namespace) will be created. The old namespace will not be removed, so the mods that were built with the old version will continue to work.
If API is needed, the depedent mod should only include a reference to KAS-API-v2.dll (version number may vary). This assembly version never changes, so the dependency will never break. It's OK to provide an API assembly with the mod since multliple API assemblies will not conflict with each other. Moreover, having "own" copy of the API ensures the mod will load even if KAS is not installed in the game. There is an ability to check if KAS is installed in the run-time (see example below).
using KASAPIv1; public class MyModule : PartModule { public void RightSample() { if (KASAPI.isLoaded) { var model = KASAPI.LinkUtils.DecoupleParts(part, part.parent); } else { Debug.LogWarning("KAS is not installed"); } } }
Class | Description | |
---|---|---|
![]() | KASAPI | KAS API, version 2. |
Interface | Description | |
---|---|---|
![]() | IAttachNodesUtils | Various methods to deal with part's attach nodes. |
![]() | ICommonConfig | Container for the various global settings of the mod. |
![]() | IJointUtils | Various tools to deal with KSP part joints. |
![]() ![]() | IKasEvents | Defines global events that are triggered by KAS. |
![]() ![]() | IKasJointEventsListener | Interface that notifies listeners about joints breaking. |
![]() | IKasLinkEvent | A holder for simple source-to-target event. |
![]() | ILinkCableJoint |
Interface for a physical cable link. Such links keep the distance between the object below the
maximum, but don't restrict any other movements of the objects relative to each other.
|
![]() | ILinkJoint | Base interface for a KAS joint. |
![]() | ILinkPeer | Base interface for an end of the link. |
![]() | ILinkRenderer |
Interface for a module that takes care of rendering a link and, optionally, manages its
colliders.
|
![]() ![]() | ILinkSource | A generic source of a KAS link between two parts. |
![]() | ILinkStateEventListener | Part module interface that defines the events for a link state changes. |
![]() ![]() | ILinkTarget | A generic target of a KAS link between two parts. |
![]() | ILinkUtils | Various tools to deal with KAS links. |
![]() | ILinkVesselInfo | A generic interface to deal with the vessels info. |
![]() | IPhysicsUtils | Various tools to deal with the game's physics. |
![]() | IWinchControl | Interface that allows operating the winch parts. |
Enumeration | Description | |
---|---|---|
![]() | GUILinkMode | Specifies how the linking mode is displayed in GUI. |
![]() ![]() | LinkActorType | Defines an actor that changes KAS link. |
![]() | LinkState | Defines correct state of the link. |