Click or drag to resize

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).

Examples
Always use API interfaces, they are clearly defined and never change once released.
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");
    }
  }
}
Classes
  ClassDescription
Public classKASAPI
KAS API, version 2.
Interfaces
  InterfaceDescription
Public interfaceIAttachNodesUtils
Various methods to deal with part's attach nodes.
Public interfaceICommonConfig
Container for the various global settings of the mod.
Public interfaceIJointUtils
Various tools to deal with KSP part joints.
Public interfaceCode exampleIKasEvents
Defines global events that are triggered by KAS.
Public interfaceCode exampleIKasJointEventsListener
Interface that notifies listeners about joints breaking.
Public interfaceIKasLinkEvent
A holder for simple source-to-target event.
Public interfaceILinkCableJoint
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.
Public interfaceILinkJoint
Base interface for a KAS joint.
Public interfaceILinkPeer
Base interface for an end of the link.
Public interfaceILinkRenderer
Interface for a module that takes care of rendering a link and, optionally, manages its colliders.
Public interfaceCode exampleILinkSource
A generic source of a KAS link between two parts.
Public interfaceILinkStateEventListener
Part module interface that defines the events for a link state changes.
Public interfaceCode exampleILinkTarget
A generic target of a KAS link between two parts.
Public interfaceILinkUtils
Various tools to deal with KAS links.
Public interfaceILinkVesselInfo
A generic interface to deal with the vessels info.
Public interfaceIPhysicsUtils
Various tools to deal with the game's physics.
Public interfaceIWinchControl
Interface that allows operating the winch parts.
Enumerations
  EnumerationDescription
Public enumerationGUILinkMode
Specifies how the linking mode is displayed in GUI.
Public enumerationCode exampleLinkActorType
Defines an actor that changes KAS link.
Public enumerationLinkState
Defines correct state of the link.