KAS.KASModuleAttachCore.Detach C# (CSharp) Method

Detach() public method

public Detach ( ) : void
return void
        public void Detach()
        {
            if (attachMode.Docked) {
              Detach(AttachType.Docked);
            }
            if (attachMode.Coupled) {
              Detach(AttachType.Coupled);
            }
            if (attachMode.FixedJoint) {
              Detach(AttachType.FixedJoint);
            }
            if (attachMode.StaticJoint) {
              Detach(AttachType.StaticJoint);
            }
        }

Same methods

KASModuleAttachCore::Detach ( AttachType attachType ) : void