IJointEventsListener Interface | 
Namespace: KSPDev.KSPInterfaces
The IJointEventsListener type exposes the following members.
| Name | Description | |
|---|---|---|
| OnJointBreak | Triggers when connection is broken due to too strong force applied.  | 
public class MyModule : PartModule, IJointEventsListener { /// <inheritdoc/> public void OnJointBreak(float breakForce) { Debug.LogInfoFormat("OnJointBreak: {0}", breakForce); } }