├── .gitignore ├── BUILD.md ├── Binaries ├── KAS-API-v2.dll ├── KAS-API-v2.xml ├── KSPDev_Utils.2.7.dll ├── KSPDev_Utils.2.7.xml ├── KSPDev_Utils_License.md ├── KSPDev_Utils_README.md ├── MiniAVC-V2.dll └── MiniAVC-V2.version ├── CHANGELOG.md ├── Deps ├── CommunityCategoryKit │ ├── CCK.dll │ ├── CCK.version │ ├── CHANGELOG.txt │ ├── common-filters.cfg │ ├── extra-filters.cfg │ └── icons │ │ ├── Containers_N.png │ │ ├── Containers_S.png │ │ ├── LifeSupport_N.png │ │ ├── LifeSupport_S.png │ │ ├── Lights_N.png │ │ ├── Lights_S.png │ │ ├── Rovers_N.png │ │ └── Rovers_S.png ├── ModuleManager.4.2.2.dll └── README.md ├── GraphicsSrc ├── CommonConnector │ └── KAS_portm_cs.xcf ├── HingeJoint │ ├── UV.xcf │ ├── UV_Joint.xcf │ └── normals.xcf ├── PartTextures │ ├── HW80.xcf │ ├── KAS_portf_cs.xcf │ ├── PCB1.xcf │ ├── RTS1.xcf │ └── W50.xcf ├── Piston │ ├── Normals4.xcf │ └── UV.xcf ├── README.md ├── RigidJoint │ ├── UV.xcf │ ├── UV_Joint.xcf │ └── normals.xcf └── Textures │ ├── ProceduralSteelCable.tga │ ├── cable.png │ ├── pipe.png │ ├── piston180.png │ └── yellow-d70-flex-1kn.xcf ├── KAS.netkan ├── KAS.version ├── LEGACY ├── LICENSE.md ├── Parts │ ├── cPort1 │ │ ├── KAS_portf_cs.dds │ │ ├── KAS_portf_n.dds │ │ ├── model.mu │ │ └── part.cfg │ ├── hook_anchor │ │ ├── anchor.mu │ │ ├── part.cfg │ │ └── portStack_C_S.dds │ ├── hook_grapplingHook │ │ ├── KAS_Hook_Grapple_CS.dds │ │ ├── model.mu │ │ └── part.cfg │ ├── hook_harpoon │ │ ├── KAS_harpoon_cs.dds │ │ ├── KAS_harpoon_n.dds │ │ ├── model.mu │ │ └── part.cfg │ ├── hook_magnet │ │ ├── KAS_Hook_Magnet_cs.dds │ │ ├── KAS_Hook_Magnet_n.dds │ │ ├── model.mu │ │ └── part.cfg │ ├── pylon1 │ │ ├── P_diff.dds │ │ ├── P_diff.png │ │ ├── normal_NRM.dds │ │ ├── normal_NRM.png │ │ ├── part.cfg │ │ └── pylon.mu │ ├── strut1 │ │ ├── part.cfg │ │ ├── strut1.mu │ │ ├── strut_diff.dds │ │ └── strut_normals2_NRM.dds │ ├── winch1 │ │ ├── 05Winch_N.dds │ │ ├── 05Winch_cs.dds │ │ ├── KAS_portm_cs.dds │ │ ├── KAS_portm_n.dds │ │ ├── model.mu │ │ └── part.cfg │ └── winch2 │ │ ├── 05WinchR_N.dds │ │ ├── 05WinchR_cs.dds │ │ ├── KAS_portm_cs.dds │ │ ├── KAS_portm_n.dds │ │ ├── model.mu │ │ └── part.cfg ├── Plugins │ └── KAS.dll ├── README.md ├── Sounds │ ├── bipwrong.ogg │ ├── broke.ogg │ ├── grab.ogg │ ├── grappleAttachEva.ogg │ ├── grappleAttachPart.ogg │ ├── grappleAttachStatic.ogg │ ├── grappleDetach.ogg │ ├── magnet.ogg │ ├── magnetAttach.ogg │ ├── magnetDetach.ogg │ ├── magnetstart.ogg │ ├── magnetstop.ogg │ ├── plug.ogg │ ├── plugdocked.ogg │ ├── rotorMotor.ogg │ ├── rotorMotorstart.ogg │ ├── rotorMotorstop.ogg │ ├── strutBuild.ogg │ ├── strutRemove.ogg │ ├── telescopicMotor.ogg │ ├── telescopicMotorstart.ogg │ ├── telescopicMotorstop.ogg │ ├── telescopicSection.ogg │ ├── unplug.ogg │ ├── unplugdocked.ogg │ ├── winchHeavyMotorstart.ogg │ ├── winchMedLock.ogg │ ├── winchMedMotor.ogg │ ├── winchMedMotorstart.ogg │ ├── winchMedMotorstop.ogg │ ├── winchSmallEject.ogg │ ├── winchSmallLock.ogg │ ├── winchSmallMotor.ogg │ ├── winchSmallMotorStart.ogg │ └── winchSmallMotorStop.ogg ├── Source │ ├── KAS-LEGACY.csproj │ ├── KASAddonControlKey.cs │ ├── KASAddonDebugTools.cs │ ├── KASAddonWinchGUI.cs │ ├── KASModuleAnchor.cs │ ├── KASModuleAttachCore.cs │ ├── KASModuleHarpoon.cs │ ├── KASModuleMagnet.cs │ ├── KASModulePhysicChild.cs │ ├── KASModulePort.cs │ ├── KASModuleStrut.cs │ ├── KASModuleWinch.cs │ ├── KAS_Shared.cs │ ├── KAS_Tube.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── README.md ├── Textures │ ├── cable.png │ ├── icon.png │ ├── pipe.png │ └── strut.png ├── changelog.md └── settings.cfg ├── LICENSE.md ├── Lang ├── en-us.cfg ├── es-es.cfg ├── fr-fr.cfg ├── it-it.cfg ├── pt-br.cfg ├── ru.cfg └── zh-cn.cfg ├── Models ├── CommonConnector │ ├── Connector.mu │ ├── KAS_portm_cs.dds │ └── KAS_portm_n.dds ├── HingeJoint │ ├── Normal_NRM.png │ ├── UV_Joint.dds │ └── model.mu ├── Piston │ ├── Normals4orig_NRM.png │ ├── Textures.dds │ └── model.mu ├── Port1 │ ├── KAS_portf_cs.dds │ ├── KAS_portf_n.dds │ └── model.mu ├── Pylon │ ├── P_diff.dds │ ├── model.mu │ └── normal_NRM.dds └── RigidJoint │ ├── Normal_NRM.png │ ├── UV_Joint.dds │ └── model.mu ├── PULL_REQUEST_TEMPLATE.md ├── Parts ├── CableBrace │ ├── Head.mu │ ├── Labels.dds │ ├── Lock.mu │ ├── PCB1.dds │ ├── PCB1NRM.dds │ ├── Winch.mu │ ├── part_CH1.cfg │ └── part_PCB1.cfg ├── GrapplingHook │ ├── KAS_Hook_Grapple_CS.dds │ ├── model.mu │ └── part.cfg ├── Harpoon │ ├── KAS_harpoon_cs.dds │ ├── KAS_harpoon_n.dds │ ├── model.mu │ └── part.cfg ├── JS1 │ ├── KAS_portf_cs.dds │ ├── KAS_portf_n.dds │ ├── model.mu │ └── part.cfg ├── PortPylon │ └── part.cfg ├── PortPylonPwr │ └── part.cfg ├── RTS1 │ ├── Labels.dds │ ├── PCB1.dds │ ├── PCB1NRM.dds │ ├── Winch.mu │ └── part.cfg ├── TB60 │ ├── KAS_portf_cs.dds │ ├── KAS_portf_n.dds │ ├── model.mu │ └── part.cfg ├── TJ1 │ ├── KAS_portf_cs.dds │ ├── KAS_portf_n.dds │ ├── model.mu │ └── part.cfg ├── TJ2 │ ├── KAS_portf_cs.dds │ ├── KAS_portf_n.dds │ ├── model.mu │ └── part.cfg ├── Winch1 │ ├── 05WinchR_N.dds │ ├── 05WinchR_cs.dds │ ├── Winch.mu │ └── part.cfg └── Winch2 │ ├── 05Winch_N.dds │ ├── 05Winch_cs.dds │ ├── Winch.mu │ └── part.cfg ├── Patches ├── MM-CommunityCategoryKit.cfg ├── MM-KIS.cfg ├── MM-Kerbals.cfg ├── MM-LegacyKASPipesPart.txt └── MM-UnofficialUpdate.txt ├── README.md ├── Sounds ├── bipwrong.ogg ├── broke.ogg ├── grab.ogg ├── grappleAttachEva.ogg ├── grappleAttachPart.ogg ├── grappleAttachStatic.ogg ├── grappleDetach.ogg ├── magnet.ogg ├── magnetAttach.ogg ├── magnetDetach.ogg ├── magnetstart.ogg ├── magnetstop.ogg ├── plug.ogg ├── plugdocked.ogg ├── rotorMotor.ogg ├── rotorMotorstart.ogg ├── rotorMotorstop.ogg ├── strutBuild.ogg ├── strutRemove.ogg ├── telescopicMotor.ogg ├── telescopicMotorstart.ogg ├── telescopicMotorstop.ogg ├── telescopicSection.ogg ├── unplug.ogg ├── unplugdocked.ogg ├── winchHeavyMotorstart.ogg ├── winchMedLock.ogg ├── winchMedMotor.ogg ├── winchMedMotorstart.ogg ├── winchMedMotorstop.ogg ├── winchSmallEject.ogg ├── winchSmallLock.ogg ├── winchSmallMotor.ogg ├── winchSmallMotorStart.ogg └── winchSmallMotorStop.ogg ├── Source-API ├── KAS-API.csproj ├── KSPAPI_HelpIndex.xml ├── KSPDevUtilsAPI_HelpIndex.xml ├── Properties │ └── AssemblyInfo.cs ├── Unity3D_HelpIndex.xml ├── api │ ├── GUILinkMode.cs │ ├── ICommonConfig.cs │ ├── IKASEvents.cs │ ├── IKasJointEventsListener.cs │ ├── IKasLinkEvent.cs │ ├── ILinkCableJoint.cs │ ├── ILinkJoint.cs │ ├── ILinkPeer.cs │ ├── ILinkRenderer.cs │ ├── ILinkSource.cs │ ├── ILinkStateEventListener.cs │ ├── ILinkTarget.cs │ ├── ILinkVesselInfo.cs │ ├── IWinchControl.cs │ ├── KASAPI.cs │ ├── LinkActorType.cs │ ├── LinkState.cs │ └── Utils │ │ ├── IAttachNodesUtils.cs │ │ ├── IJointUtils.cs │ │ ├── ILinkUtils.cs │ │ └── IPhysicsUtils.cs └── docs_project │ ├── .gitignore │ ├── Examples │ ├── ICommonConfig-Examples.cs │ ├── IKasEvents-Examples.cs │ ├── IKasJointEventsListener-Examples.cs │ ├── ILinkSource-Examples.cs │ ├── ILinkTarget-Examples.cs │ ├── KAS-API-Examples.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── README.md │ ├── KAS_API.shfbproj │ ├── KSP_API.shfbproj │ └── icons │ └── KAS-logo.png ├── Source ├── KAS.csproj ├── KSPAPI_HelpIndex.xml ├── KSPDevUtilsAPI_HelpIndex.xml ├── KSPDev_candidates │ └── README.md ├── LOCALIZATION.md ├── Properties │ └── AssemblyInfo.cs ├── README.md ├── SpecialDocTags.xml ├── SpecialDocTagsExpand.xslt ├── TODO.txt ├── Unity3D_HelpIndex.xml ├── api_impl │ ├── AttachNodesUtilsImpl.cs │ ├── CommonConfigImpl.cs │ ├── JointUtilsImpl.cs │ ├── KASAPILauncher.cs │ ├── KasEventsImpl.cs │ ├── KasLinkEventImpl.cs │ ├── LinkUtilsImpl.cs │ ├── PhysicsUtilsImpl.cs │ └── README.md ├── compatibility │ └── PatchFilesProcessor.cs ├── controllers │ ├── ControllerPartEditorTool.cs │ ├── ControllerWinchRemote.cs │ └── README.md ├── debug │ └── KASDebugAdjustableAttribute.cs └── modules │ ├── AbstractJoint.cs │ ├── AbstractLinkPeer.cs │ ├── AbstractPipeRenderer.cs │ ├── AbstractProceduralModel.cs │ ├── KASInternalBrokenJointListener.cs │ ├── KASInternalPhysicalConnector.cs │ ├── KASJointCableBase.cs │ ├── KASJointRigid.cs │ ├── KASJointTowBar.cs │ ├── KASJointTwoEndsSphere.cs │ ├── KASLinkResourceConnector.cs │ ├── KASLinkSourceBase.cs │ ├── KASLinkSourceInteractive.cs │ ├── KASLinkSourcePhysical.cs │ ├── KASLinkTargetBase.cs │ ├── KASLinkTargetKerbal.cs │ ├── KASLinkWinch.cs │ ├── KASModuleDart.cs │ ├── KASRendererBezierPipe.cs │ ├── KASRendererPipe.cs │ ├── KASRendererTelescopicPipe.cs │ └── README.md ├── Textures ├── KASFilterIcon.png ├── ProceduralSteelCable.dds ├── ProceduralSteelCableNRM.dds ├── corrugated_steel.dds ├── hose-d70-1kn.dds └── hose-d70-1knNRM.dds ├── Tools ├── KspReleaseBuilder.py ├── KspReleaseBuilder_License.md ├── PublishCurseForge.py ├── PublishGitHub.py ├── PublishSpacedock.py ├── clients │ ├── CurseForgeClient.py │ ├── GitHubClient.py │ ├── SpacedockClient.py │ └── __init__.py ├── logging.conf ├── make_binary.cmd ├── msxsl.exe ├── publish_curseforge.cmd ├── publish_curseforge_args.txt ├── publish_github.cmd ├── publish_github_args.txt ├── publish_spacedock.cmd ├── publish_spacedock_args.txt ├── release_setup.json └── utils │ ├── ChangelogUtils.py │ ├── FormDataUtil.py │ └── __init__.py ├── WikiImages ├── Brazil-small-flag.png ├── Chineese-small-flag.png ├── French-small-flag.png ├── Italian-small-flag.png ├── KIS-debug-features.jpg ├── Russian-small-flag.png ├── Spanish-small-flag.png ├── Upgrade-v1.2-After.jpg ├── Upgrade-v1.2-Before.jpg └── Upgrade-v1.2-Confirmation.jpg ├── docs ├── APIv2 │ ├── SearchHelp.aspx │ ├── SearchHelp.inc.php │ ├── SearchHelp.php │ ├── Web.Config │ ├── WebKI.xml │ ├── WebTOC.xml │ ├── fti │ │ ├── FTI_100.json │ │ ├── FTI_101.json │ │ ├── FTI_102.json │ │ ├── FTI_103.json │ │ ├── FTI_104.json │ │ ├── FTI_105.json │ │ ├── FTI_106.json │ │ ├── FTI_107.json │ │ ├── FTI_108.json │ │ ├── FTI_109.json │ │ ├── FTI_110.json │ │ ├── FTI_111.json │ │ ├── FTI_112.json │ │ ├── FTI_114.json │ │ ├── FTI_115.json │ │ ├── FTI_116.json │ │ ├── FTI_117.json │ │ ├── FTI_118.json │ │ ├── FTI_119.json │ │ ├── FTI_121.json │ │ ├── FTI_122.json │ │ ├── FTI_97.json │ │ ├── FTI_98.json │ │ ├── FTI_99.json │ │ └── FTI_Files.json │ ├── html │ │ ├── F_KASAPIv2_KASAPI_AttachNodesUtils.htm │ │ ├── F_KASAPIv2_KASAPI_CommonConfig.htm │ │ ├── F_KASAPIv2_KASAPI_JointUtils.htm │ │ ├── F_KASAPIv2_KASAPI_KasEvents.htm │ │ ├── F_KASAPIv2_KASAPI_LinkUtils.htm │ │ ├── F_KASAPIv2_KASAPI_PhysicsUtils.htm │ │ ├── F_KASAPIv2_KASAPI_isLoaded.htm │ │ ├── Fields_T_KASAPIv2_KASAPI.htm │ │ ├── GeneralError.htm │ │ ├── M_KASAPIv2_IAttachNodesUtils_AddNode.htm │ │ ├── M_KASAPIv2_IAttachNodesUtils_CreateNode.htm │ │ ├── M_KASAPIv2_IAttachNodesUtils_DropNode.htm │ │ ├── M_KASAPIv2_IAttachNodesUtils_GetTransformForNode.htm │ │ ├── M_KASAPIv2_IAttachNodesUtils_NodeId.htm │ │ ├── M_KASAPIv2_IAttachNodesUtils_ParseNodeFromString.htm │ │ ├── M_KASAPIv2_IJointUtils_DumpJoint.htm │ │ ├── M_KASAPIv2_IJointUtils_DumpSpringJoint.htm │ │ ├── M_KASAPIv2_IJointUtils_ResetJoint.htm │ │ ├── M_KASAPIv2_IJointUtils_SetupDistanceJoint.htm │ │ ├── M_KASAPIv2_IJointUtils_SetupFixedJoint.htm │ │ ├── M_KASAPIv2_IJointUtils_SetupPrismaticJoint.htm │ │ ├── M_KASAPIv2_IJointUtils_SetupSphericalJoint.htm │ │ ├── M_KASAPIv2_IKasJointEventsListener_OnKASJointBreak.htm │ │ ├── M_KASAPIv2_ILinkCableJoint_SetCableLength.htm │ │ ├── M_KASAPIv2_ILinkCableJoint_SetLockedOnCouple.htm │ │ ├── M_KASAPIv2_ILinkCableJoint_StartPhysicalHead.htm │ │ ├── M_KASAPIv2_ILinkCableJoint_StopPhysicalHead.htm │ │ ├── M_KASAPIv2_ILinkJoint_AdjustJoint.htm │ │ ├── M_KASAPIv2_ILinkJoint_CheckConstraints.htm │ │ ├── M_KASAPIv2_ILinkJoint_CreateJoint.htm │ │ ├── M_KASAPIv2_ILinkJoint_DropJoint.htm │ │ ├── M_KASAPIv2_ILinkJoint_SetCoupleOnLinkMode.htm │ │ ├── M_KASAPIv2_ILinkRenderer_CheckColliderHits.htm │ │ ├── M_KASAPIv2_ILinkRenderer_GetMeshByName.htm │ │ ├── M_KASAPIv2_ILinkRenderer_StartRenderer.htm │ │ ├── M_KASAPIv2_ILinkRenderer_StopRenderer.htm │ │ ├── M_KASAPIv2_ILinkRenderer_UpdateLink.htm │ │ ├── M_KASAPIv2_ILinkSource_BreakCurrentLink.htm │ │ ├── M_KASAPIv2_ILinkSource_CancelLinking.htm │ │ ├── M_KASAPIv2_ILinkSource_CheckCanLinkTo.htm │ │ ├── M_KASAPIv2_ILinkSource_LinkToTarget.htm │ │ ├── M_KASAPIv2_ILinkSource_LinkToTarget_1.htm │ │ ├── M_KASAPIv2_ILinkSource_StartLinking.htm │ │ ├── M_KASAPIv2_ILinkStateEventListener_OnKASLinkedState.htm │ │ ├── M_KASAPIv2_ILinkStateEventListener_OnKASNodeBlockedState.htm │ │ ├── M_KASAPIv2_ILinkUtils_CoupleParts.htm │ │ ├── M_KASAPIv2_ILinkUtils_DecoupleParts.htm │ │ ├── M_KASAPIv2_ILinkUtils_FindLinkPeer.htm │ │ ├── M_KASAPIv2_IPhysicsUtils_ApplyGravity.htm │ │ ├── M_KASAPIv2_IWinchControl_ReleaseCable.htm │ │ ├── M_KASAPIv2_IWinchControl_SetMotor.htm │ │ ├── M_KASAPIv2_IWinchControl_StretchCable.htm │ │ ├── Methods_T_KASAPIv2_IAttachNodesUtils.htm │ │ ├── Methods_T_KASAPIv2_IJointUtils.htm │ │ ├── Methods_T_KASAPIv2_IKasJointEventsListener.htm │ │ ├── Methods_T_KASAPIv2_ILinkCableJoint.htm │ │ ├── Methods_T_KASAPIv2_ILinkJoint.htm │ │ ├── Methods_T_KASAPIv2_ILinkRenderer.htm │ │ ├── Methods_T_KASAPIv2_ILinkSource.htm │ │ ├── Methods_T_KASAPIv2_ILinkStateEventListener.htm │ │ ├── Methods_T_KASAPIv2_ILinkUtils.htm │ │ ├── Methods_T_KASAPIv2_IPhysicsUtils.htm │ │ ├── Methods_T_KASAPIv2_IWinchControl.htm │ │ ├── N_KASAPIv2.htm │ │ ├── Overload_KASAPIv2_ILinkSource_LinkToTarget.htm │ │ ├── P_KASAPIv2_ICommonConfig_keyDropConnector.htm │ │ ├── P_KASAPIv2_ICommonConfig_keyPickupConnector.htm │ │ ├── P_KASAPIv2_ICommonConfig_sndPathBipWrong.htm │ │ ├── P_KASAPIv2_IKasEvents_OnLinkBroken.htm │ │ ├── P_KASAPIv2_IKasEvents_OnLinkCreated.htm │ │ ├── P_KASAPIv2_IKasEvents_OnStartLinking.htm │ │ ├── P_KASAPIv2_IKasEvents_OnStopLinking.htm │ │ ├── P_KASAPIv2_IKasLinkEvent_actor.htm │ │ ├── P_KASAPIv2_IKasLinkEvent_source.htm │ │ ├── P_KASAPIv2_IKasLinkEvent_target.htm │ │ ├── P_KASAPIv2_ILinkCableJoint_cfgMaxCableLength.htm │ │ ├── P_KASAPIv2_ILinkCableJoint_deployedCableLength.htm │ │ ├── P_KASAPIv2_ILinkCableJoint_headRb.htm │ │ ├── P_KASAPIv2_ILinkCableJoint_isLockedWhenCoupled.htm │ │ ├── P_KASAPIv2_ILinkCableJoint_realCableLength.htm │ │ ├── P_KASAPIv2_ILinkJoint_cfgJointName.htm │ │ ├── P_KASAPIv2_ILinkJoint_coupleOnLinkMode.htm │ │ ├── P_KASAPIv2_ILinkJoint_isLinked.htm │ │ ├── P_KASAPIv2_ILinkJoint_linkSource.htm │ │ ├── P_KASAPIv2_ILinkJoint_linkTarget.htm │ │ ├── P_KASAPIv2_ILinkPeer_attachNode.htm │ │ ├── P_KASAPIv2_ILinkPeer_cfgAttachNodeName.htm │ │ ├── P_KASAPIv2_ILinkPeer_cfgDependentNodeNames.htm │ │ ├── P_KASAPIv2_ILinkPeer_cfgLinkType.htm │ │ ├── P_KASAPIv2_ILinkPeer_coupleNode.htm │ │ ├── P_KASAPIv2_ILinkPeer_isLinked.htm │ │ ├── P_KASAPIv2_ILinkPeer_isLocked.htm │ │ ├── P_KASAPIv2_ILinkPeer_isNodeBlocked.htm │ │ ├── P_KASAPIv2_ILinkPeer_linkNodeName.htm │ │ ├── P_KASAPIv2_ILinkPeer_linkPartId.htm │ │ ├── P_KASAPIv2_ILinkPeer_linkState.htm │ │ ├── P_KASAPIv2_ILinkPeer_nodeTransform.htm │ │ ├── P_KASAPIv2_ILinkPeer_otherPeer.htm │ │ ├── P_KASAPIv2_ILinkPeer_part.htm │ │ ├── P_KASAPIv2_ILinkRenderer_cfgRendererName.htm │ │ ├── P_KASAPIv2_ILinkRenderer_colorOverride.htm │ │ ├── P_KASAPIv2_ILinkRenderer_isPhysicalCollider.htm │ │ ├── P_KASAPIv2_ILinkRenderer_isStarted.htm │ │ ├── P_KASAPIv2_ILinkRenderer_shaderNameOverride.htm │ │ ├── P_KASAPIv2_ILinkRenderer_sourceTransform.htm │ │ ├── P_KASAPIv2_ILinkRenderer_targetTransform.htm │ │ ├── P_KASAPIv2_ILinkSource_linkJoint.htm │ │ ├── P_KASAPIv2_ILinkSource_linkRenderer.htm │ │ ├── P_KASAPIv2_ILinkSource_linkTarget.htm │ │ ├── P_KASAPIv2_ILinkTarget_linkSource.htm │ │ ├── P_KASAPIv2_ILinkVesselInfo_part.htm │ │ ├── P_KASAPIv2_ILinkVesselInfo_vesselInfo.htm │ │ ├── P_KASAPIv2_IWinchControl_cfgMaxCableLength.htm │ │ ├── P_KASAPIv2_IWinchControl_cfgMotorMaxSpeed.htm │ │ ├── P_KASAPIv2_IWinchControl_currentCableLength.htm │ │ ├── P_KASAPIv2_IWinchControl_isConnectorLocked.htm │ │ ├── P_KASAPIv2_IWinchControl_motorCurrentSpeed.htm │ │ ├── P_KASAPIv2_IWinchControl_motorTargetSpeed.htm │ │ ├── PageNotFound.htm │ │ ├── Properties_T_KASAPIv2_ICommonConfig.htm │ │ ├── Properties_T_KASAPIv2_IKasEvents.htm │ │ ├── Properties_T_KASAPIv2_IKasLinkEvent.htm │ │ ├── Properties_T_KASAPIv2_ILinkCableJoint.htm │ │ ├── Properties_T_KASAPIv2_ILinkJoint.htm │ │ ├── Properties_T_KASAPIv2_ILinkPeer.htm │ │ ├── Properties_T_KASAPIv2_ILinkRenderer.htm │ │ ├── Properties_T_KASAPIv2_ILinkSource.htm │ │ ├── Properties_T_KASAPIv2_ILinkTarget.htm │ │ ├── Properties_T_KASAPIv2_ILinkVesselInfo.htm │ │ ├── Properties_T_KASAPIv2_IWinchControl.htm │ │ ├── T_KASAPIv2_GUILinkMode.htm │ │ ├── T_KASAPIv2_IAttachNodesUtils.htm │ │ ├── T_KASAPIv2_ICommonConfig.htm │ │ ├── T_KASAPIv2_IJointUtils.htm │ │ ├── T_KASAPIv2_IKasEvents.htm │ │ ├── T_KASAPIv2_IKasJointEventsListener.htm │ │ ├── T_KASAPIv2_IKasLinkEvent.htm │ │ ├── T_KASAPIv2_ILinkCableJoint.htm │ │ ├── T_KASAPIv2_ILinkJoint.htm │ │ ├── T_KASAPIv2_ILinkPeer.htm │ │ ├── T_KASAPIv2_ILinkRenderer.htm │ │ ├── T_KASAPIv2_ILinkSource.htm │ │ ├── T_KASAPIv2_ILinkStateEventListener.htm │ │ ├── T_KASAPIv2_ILinkTarget.htm │ │ ├── T_KASAPIv2_ILinkUtils.htm │ │ ├── T_KASAPIv2_ILinkVesselInfo.htm │ │ ├── T_KASAPIv2_IPhysicsUtils.htm │ │ ├── T_KASAPIv2_IWinchControl.htm │ │ ├── T_KASAPIv2_KASAPI.htm │ │ ├── T_KASAPIv2_LinkActorType.htm │ │ └── T_KASAPIv2_LinkState.htm │ ├── icons │ │ ├── AlertCaution.png │ │ ├── AlertNote.png │ │ ├── AlertSecurity.png │ │ ├── CFW.gif │ │ ├── CodeExample.png │ │ ├── KAS-logo.png │ │ ├── Search.png │ │ ├── SectionCollapsed.png │ │ ├── SectionExpanded.png │ │ ├── TocClose.gif │ │ ├── TocCollapsed.gif │ │ ├── TocExpanded.gif │ │ ├── TocOpen.gif │ │ ├── favicon.ico │ │ ├── privclass.gif │ │ ├── privdelegate.gif │ │ ├── privenumeration.gif │ │ ├── privevent.gif │ │ ├── privextension.gif │ │ ├── privfield.gif │ │ ├── privinterface.gif │ │ ├── privmethod.gif │ │ ├── privproperty.gif │ │ ├── privstructure.gif │ │ ├── protclass.gif │ │ ├── protdelegate.gif │ │ ├── protenumeration.gif │ │ ├── protevent.gif │ │ ├── protextension.gif │ │ ├── protfield.gif │ │ ├── protinterface.gif │ │ ├── protmethod.gif │ │ ├── protoperator.gif │ │ ├── protproperty.gif │ │ ├── protstructure.gif │ │ ├── pubclass.gif │ │ ├── pubdelegate.gif │ │ ├── pubenumeration.gif │ │ ├── pubevent.gif │ │ ├── pubextension.gif │ │ ├── pubfield.gif │ │ ├── pubinterface.gif │ │ ├── pubmethod.gif │ │ ├── puboperator.gif │ │ ├── pubproperty.gif │ │ ├── pubstructure.gif │ │ ├── slMobile.gif │ │ ├── static.gif │ │ └── xna.gif │ ├── index.html │ ├── scripts │ │ ├── branding-Website.js │ │ ├── branding.js │ │ ├── clipboard.min.js │ │ ├── highlight.js │ │ ├── jquery-3.3.1.min.js │ │ └── jquery-3.5.1.min.js │ ├── search.html │ ├── styles │ │ ├── branding-Help1.css │ │ ├── branding-HelpViewer.css │ │ ├── branding-Website.css │ │ ├── branding-cs-CZ.css │ │ ├── branding-de-DE.css │ │ ├── branding-en-US.css │ │ ├── branding-es-ES.css │ │ ├── branding-fr-FR.css │ │ ├── branding-it-IT.css │ │ ├── branding-ja-JP.css │ │ ├── branding-ko-KR.css │ │ ├── branding-pl-PL.css │ │ ├── branding-pt-BR.css │ │ ├── branding-ru-RU.css │ │ ├── branding-tr-TR.css │ │ ├── branding-zh-CN.css │ │ ├── branding-zh-TW.css │ │ ├── branding.css │ │ └── highlight.css │ └── toc │ │ ├── Fields_T_KASAPIv2_KASAPI.xml │ │ ├── Methods_T_KASAPIv2_IAttachNodesUtils.xml │ │ ├── Methods_T_KASAPIv2_IJointUtils.xml │ │ ├── Methods_T_KASAPIv2_IKasJointEventsListener.xml │ │ ├── Methods_T_KASAPIv2_ILinkCableJoint.xml │ │ ├── Methods_T_KASAPIv2_ILinkJoint.xml │ │ ├── Methods_T_KASAPIv2_ILinkRenderer.xml │ │ ├── Methods_T_KASAPIv2_ILinkSource.xml │ │ ├── Methods_T_KASAPIv2_ILinkStateEventListener.xml │ │ ├── Methods_T_KASAPIv2_ILinkUtils.xml │ │ ├── Methods_T_KASAPIv2_IPhysicsUtils.xml │ │ ├── Methods_T_KASAPIv2_IWinchControl.xml │ │ ├── N_KASAPIv2.xml │ │ ├── Overload_KASAPIv2_ILinkSource_LinkToTarget.xml │ │ ├── Properties_T_KASAPIv2_ICommonConfig.xml │ │ ├── Properties_T_KASAPIv2_IKasEvents.xml │ │ ├── Properties_T_KASAPIv2_IKasLinkEvent.xml │ │ ├── Properties_T_KASAPIv2_ILinkCableJoint.xml │ │ ├── Properties_T_KASAPIv2_ILinkJoint.xml │ │ ├── Properties_T_KASAPIv2_ILinkPeer.xml │ │ ├── Properties_T_KASAPIv2_ILinkRenderer.xml │ │ ├── Properties_T_KASAPIv2_ILinkSource.xml │ │ ├── Properties_T_KASAPIv2_ILinkTarget.xml │ │ ├── Properties_T_KASAPIv2_ILinkVesselInfo.xml │ │ ├── Properties_T_KASAPIv2_IWinchControl.xml │ │ ├── T_KASAPIv2_IAttachNodesUtils.xml │ │ ├── T_KASAPIv2_ICommonConfig.xml │ │ ├── T_KASAPIv2_IJointUtils.xml │ │ ├── T_KASAPIv2_IKasEvents.xml │ │ ├── T_KASAPIv2_IKasJointEventsListener.xml │ │ ├── T_KASAPIv2_IKasLinkEvent.xml │ │ ├── T_KASAPIv2_ILinkCableJoint.xml │ │ ├── T_KASAPIv2_ILinkJoint.xml │ │ ├── T_KASAPIv2_ILinkPeer.xml │ │ ├── T_KASAPIv2_ILinkRenderer.xml │ │ ├── T_KASAPIv2_ILinkSource.xml │ │ ├── T_KASAPIv2_ILinkStateEventListener.xml │ │ ├── T_KASAPIv2_ILinkTarget.xml │ │ ├── T_KASAPIv2_ILinkUtils.xml │ │ ├── T_KASAPIv2_ILinkVesselInfo.xml │ │ ├── T_KASAPIv2_IPhysicsUtils.xml │ │ ├── T_KASAPIv2_IWinchControl.xml │ │ ├── T_KASAPIv2_KASAPI.xml │ │ └── roottoc.xml ├── README.md └── _config.yml └── settings.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/BUILD.md -------------------------------------------------------------------------------- /Binaries/KAS-API-v2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Binaries/KAS-API-v2.dll -------------------------------------------------------------------------------- /Binaries/KAS-API-v2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Binaries/KAS-API-v2.xml -------------------------------------------------------------------------------- /Binaries/KSPDev_Utils.2.7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Binaries/KSPDev_Utils.2.7.dll -------------------------------------------------------------------------------- /Binaries/KSPDev_Utils.2.7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Binaries/KSPDev_Utils.2.7.xml -------------------------------------------------------------------------------- /Binaries/KSPDev_Utils_License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Binaries/KSPDev_Utils_License.md -------------------------------------------------------------------------------- /Binaries/KSPDev_Utils_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Binaries/KSPDev_Utils_README.md -------------------------------------------------------------------------------- /Binaries/MiniAVC-V2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Binaries/MiniAVC-V2.dll -------------------------------------------------------------------------------- /Binaries/MiniAVC-V2.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Binaries/MiniAVC-V2.version -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Deps/CommunityCategoryKit/CCK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Deps/CommunityCategoryKit/CCK.dll -------------------------------------------------------------------------------- /Deps/CommunityCategoryKit/CCK.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Deps/CommunityCategoryKit/CCK.version -------------------------------------------------------------------------------- /Deps/CommunityCategoryKit/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Deps/CommunityCategoryKit/CHANGELOG.txt -------------------------------------------------------------------------------- /Deps/CommunityCategoryKit/common-filters.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Deps/CommunityCategoryKit/common-filters.cfg -------------------------------------------------------------------------------- /Deps/CommunityCategoryKit/extra-filters.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Deps/CommunityCategoryKit/extra-filters.cfg -------------------------------------------------------------------------------- /Deps/CommunityCategoryKit/icons/Containers_N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Deps/CommunityCategoryKit/icons/Containers_N.png -------------------------------------------------------------------------------- /Deps/CommunityCategoryKit/icons/Containers_S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Deps/CommunityCategoryKit/icons/Containers_S.png -------------------------------------------------------------------------------- /Deps/CommunityCategoryKit/icons/LifeSupport_N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Deps/CommunityCategoryKit/icons/LifeSupport_N.png -------------------------------------------------------------------------------- /Deps/CommunityCategoryKit/icons/LifeSupport_S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Deps/CommunityCategoryKit/icons/LifeSupport_S.png -------------------------------------------------------------------------------- /Deps/CommunityCategoryKit/icons/Lights_N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Deps/CommunityCategoryKit/icons/Lights_N.png -------------------------------------------------------------------------------- /Deps/CommunityCategoryKit/icons/Lights_S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Deps/CommunityCategoryKit/icons/Lights_S.png -------------------------------------------------------------------------------- /Deps/CommunityCategoryKit/icons/Rovers_N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Deps/CommunityCategoryKit/icons/Rovers_N.png -------------------------------------------------------------------------------- /Deps/CommunityCategoryKit/icons/Rovers_S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Deps/CommunityCategoryKit/icons/Rovers_S.png -------------------------------------------------------------------------------- /Deps/ModuleManager.4.2.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Deps/ModuleManager.4.2.2.dll -------------------------------------------------------------------------------- /Deps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Deps/README.md -------------------------------------------------------------------------------- /GraphicsSrc/CommonConnector/KAS_portm_cs.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/GraphicsSrc/CommonConnector/KAS_portm_cs.xcf -------------------------------------------------------------------------------- /GraphicsSrc/HingeJoint/UV.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/GraphicsSrc/HingeJoint/UV.xcf -------------------------------------------------------------------------------- /GraphicsSrc/HingeJoint/UV_Joint.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/GraphicsSrc/HingeJoint/UV_Joint.xcf -------------------------------------------------------------------------------- /GraphicsSrc/HingeJoint/normals.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/GraphicsSrc/HingeJoint/normals.xcf -------------------------------------------------------------------------------- /GraphicsSrc/PartTextures/HW80.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/GraphicsSrc/PartTextures/HW80.xcf -------------------------------------------------------------------------------- /GraphicsSrc/PartTextures/KAS_portf_cs.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/GraphicsSrc/PartTextures/KAS_portf_cs.xcf -------------------------------------------------------------------------------- /GraphicsSrc/PartTextures/PCB1.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/GraphicsSrc/PartTextures/PCB1.xcf -------------------------------------------------------------------------------- /GraphicsSrc/PartTextures/RTS1.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/GraphicsSrc/PartTextures/RTS1.xcf -------------------------------------------------------------------------------- /GraphicsSrc/PartTextures/W50.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/GraphicsSrc/PartTextures/W50.xcf -------------------------------------------------------------------------------- /GraphicsSrc/Piston/Normals4.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/GraphicsSrc/Piston/Normals4.xcf -------------------------------------------------------------------------------- /GraphicsSrc/Piston/UV.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/GraphicsSrc/Piston/UV.xcf -------------------------------------------------------------------------------- /GraphicsSrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/GraphicsSrc/README.md -------------------------------------------------------------------------------- /GraphicsSrc/RigidJoint/UV.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/GraphicsSrc/RigidJoint/UV.xcf -------------------------------------------------------------------------------- /GraphicsSrc/RigidJoint/UV_Joint.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/GraphicsSrc/RigidJoint/UV_Joint.xcf -------------------------------------------------------------------------------- /GraphicsSrc/RigidJoint/normals.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/GraphicsSrc/RigidJoint/normals.xcf -------------------------------------------------------------------------------- /GraphicsSrc/Textures/ProceduralSteelCable.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/GraphicsSrc/Textures/ProceduralSteelCable.tga -------------------------------------------------------------------------------- /GraphicsSrc/Textures/cable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/GraphicsSrc/Textures/cable.png -------------------------------------------------------------------------------- /GraphicsSrc/Textures/pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/GraphicsSrc/Textures/pipe.png -------------------------------------------------------------------------------- /GraphicsSrc/Textures/piston180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/GraphicsSrc/Textures/piston180.png -------------------------------------------------------------------------------- /GraphicsSrc/Textures/yellow-d70-flex-1kn.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/GraphicsSrc/Textures/yellow-d70-flex-1kn.xcf -------------------------------------------------------------------------------- /KAS.netkan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/KAS.netkan -------------------------------------------------------------------------------- /KAS.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/KAS.version -------------------------------------------------------------------------------- /LEGACY/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/LICENSE.md -------------------------------------------------------------------------------- /LEGACY/Parts/cPort1/KAS_portf_cs.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/cPort1/KAS_portf_cs.dds -------------------------------------------------------------------------------- /LEGACY/Parts/cPort1/KAS_portf_n.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/cPort1/KAS_portf_n.dds -------------------------------------------------------------------------------- /LEGACY/Parts/cPort1/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/cPort1/model.mu -------------------------------------------------------------------------------- /LEGACY/Parts/cPort1/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/cPort1/part.cfg -------------------------------------------------------------------------------- /LEGACY/Parts/hook_anchor/anchor.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/hook_anchor/anchor.mu -------------------------------------------------------------------------------- /LEGACY/Parts/hook_anchor/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/hook_anchor/part.cfg -------------------------------------------------------------------------------- /LEGACY/Parts/hook_anchor/portStack_C_S.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/hook_anchor/portStack_C_S.dds -------------------------------------------------------------------------------- /LEGACY/Parts/hook_grapplingHook/KAS_Hook_Grapple_CS.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/hook_grapplingHook/KAS_Hook_Grapple_CS.dds -------------------------------------------------------------------------------- /LEGACY/Parts/hook_grapplingHook/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/hook_grapplingHook/model.mu -------------------------------------------------------------------------------- /LEGACY/Parts/hook_grapplingHook/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/hook_grapplingHook/part.cfg -------------------------------------------------------------------------------- /LEGACY/Parts/hook_harpoon/KAS_harpoon_cs.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/hook_harpoon/KAS_harpoon_cs.dds -------------------------------------------------------------------------------- /LEGACY/Parts/hook_harpoon/KAS_harpoon_n.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/hook_harpoon/KAS_harpoon_n.dds -------------------------------------------------------------------------------- /LEGACY/Parts/hook_harpoon/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/hook_harpoon/model.mu -------------------------------------------------------------------------------- /LEGACY/Parts/hook_harpoon/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/hook_harpoon/part.cfg -------------------------------------------------------------------------------- /LEGACY/Parts/hook_magnet/KAS_Hook_Magnet_cs.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/hook_magnet/KAS_Hook_Magnet_cs.dds -------------------------------------------------------------------------------- /LEGACY/Parts/hook_magnet/KAS_Hook_Magnet_n.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/hook_magnet/KAS_Hook_Magnet_n.dds -------------------------------------------------------------------------------- /LEGACY/Parts/hook_magnet/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/hook_magnet/model.mu -------------------------------------------------------------------------------- /LEGACY/Parts/hook_magnet/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/hook_magnet/part.cfg -------------------------------------------------------------------------------- /LEGACY/Parts/pylon1/P_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/pylon1/P_diff.dds -------------------------------------------------------------------------------- /LEGACY/Parts/pylon1/P_diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/pylon1/P_diff.png -------------------------------------------------------------------------------- /LEGACY/Parts/pylon1/normal_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/pylon1/normal_NRM.dds -------------------------------------------------------------------------------- /LEGACY/Parts/pylon1/normal_NRM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/pylon1/normal_NRM.png -------------------------------------------------------------------------------- /LEGACY/Parts/pylon1/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/pylon1/part.cfg -------------------------------------------------------------------------------- /LEGACY/Parts/pylon1/pylon.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/pylon1/pylon.mu -------------------------------------------------------------------------------- /LEGACY/Parts/strut1/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/strut1/part.cfg -------------------------------------------------------------------------------- /LEGACY/Parts/strut1/strut1.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/strut1/strut1.mu -------------------------------------------------------------------------------- /LEGACY/Parts/strut1/strut_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/strut1/strut_diff.dds -------------------------------------------------------------------------------- /LEGACY/Parts/strut1/strut_normals2_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/strut1/strut_normals2_NRM.dds -------------------------------------------------------------------------------- /LEGACY/Parts/winch1/05Winch_N.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/winch1/05Winch_N.dds -------------------------------------------------------------------------------- /LEGACY/Parts/winch1/05Winch_cs.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/winch1/05Winch_cs.dds -------------------------------------------------------------------------------- /LEGACY/Parts/winch1/KAS_portm_cs.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/winch1/KAS_portm_cs.dds -------------------------------------------------------------------------------- /LEGACY/Parts/winch1/KAS_portm_n.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/winch1/KAS_portm_n.dds -------------------------------------------------------------------------------- /LEGACY/Parts/winch1/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/winch1/model.mu -------------------------------------------------------------------------------- /LEGACY/Parts/winch1/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/winch1/part.cfg -------------------------------------------------------------------------------- /LEGACY/Parts/winch2/05WinchR_N.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/winch2/05WinchR_N.dds -------------------------------------------------------------------------------- /LEGACY/Parts/winch2/05WinchR_cs.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/winch2/05WinchR_cs.dds -------------------------------------------------------------------------------- /LEGACY/Parts/winch2/KAS_portm_cs.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/winch2/KAS_portm_cs.dds -------------------------------------------------------------------------------- /LEGACY/Parts/winch2/KAS_portm_n.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/winch2/KAS_portm_n.dds -------------------------------------------------------------------------------- /LEGACY/Parts/winch2/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/winch2/model.mu -------------------------------------------------------------------------------- /LEGACY/Parts/winch2/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Parts/winch2/part.cfg -------------------------------------------------------------------------------- /LEGACY/Plugins/KAS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Plugins/KAS.dll -------------------------------------------------------------------------------- /LEGACY/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/README.md -------------------------------------------------------------------------------- /LEGACY/Sounds/bipwrong.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/bipwrong.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/broke.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/broke.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/grab.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/grab.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/grappleAttachEva.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/grappleAttachEva.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/grappleAttachPart.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/grappleAttachPart.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/grappleAttachStatic.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/grappleAttachStatic.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/grappleDetach.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/grappleDetach.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/magnet.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/magnet.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/magnetAttach.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/magnetAttach.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/magnetDetach.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/magnetDetach.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/magnetstart.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/magnetstart.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/magnetstop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/magnetstop.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/plug.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/plug.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/plugdocked.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/plugdocked.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/rotorMotor.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/rotorMotor.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/rotorMotorstart.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/rotorMotorstart.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/rotorMotorstop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/rotorMotorstop.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/strutBuild.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/strutBuild.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/strutRemove.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/strutRemove.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/telescopicMotor.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/telescopicMotor.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/telescopicMotorstart.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/telescopicMotorstart.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/telescopicMotorstop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/telescopicMotorstop.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/telescopicSection.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/telescopicSection.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/unplug.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/unplug.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/unplugdocked.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/unplugdocked.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/winchHeavyMotorstart.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/winchHeavyMotorstart.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/winchMedLock.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/winchMedLock.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/winchMedMotor.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/winchMedMotor.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/winchMedMotorstart.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/winchMedMotorstart.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/winchMedMotorstop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/winchMedMotorstop.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/winchSmallEject.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/winchSmallEject.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/winchSmallLock.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/winchSmallLock.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/winchSmallMotor.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/winchSmallMotor.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/winchSmallMotorStart.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/winchSmallMotorStart.ogg -------------------------------------------------------------------------------- /LEGACY/Sounds/winchSmallMotorStop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Sounds/winchSmallMotorStop.ogg -------------------------------------------------------------------------------- /LEGACY/Source/KAS-LEGACY.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Source/KAS-LEGACY.csproj -------------------------------------------------------------------------------- /LEGACY/Source/KASAddonControlKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Source/KASAddonControlKey.cs -------------------------------------------------------------------------------- /LEGACY/Source/KASAddonDebugTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Source/KASAddonDebugTools.cs -------------------------------------------------------------------------------- /LEGACY/Source/KASAddonWinchGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Source/KASAddonWinchGUI.cs -------------------------------------------------------------------------------- /LEGACY/Source/KASModuleAnchor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Source/KASModuleAnchor.cs -------------------------------------------------------------------------------- /LEGACY/Source/KASModuleAttachCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Source/KASModuleAttachCore.cs -------------------------------------------------------------------------------- /LEGACY/Source/KASModuleHarpoon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Source/KASModuleHarpoon.cs -------------------------------------------------------------------------------- /LEGACY/Source/KASModuleMagnet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Source/KASModuleMagnet.cs -------------------------------------------------------------------------------- /LEGACY/Source/KASModulePhysicChild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Source/KASModulePhysicChild.cs -------------------------------------------------------------------------------- /LEGACY/Source/KASModulePort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Source/KASModulePort.cs -------------------------------------------------------------------------------- /LEGACY/Source/KASModuleStrut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Source/KASModuleStrut.cs -------------------------------------------------------------------------------- /LEGACY/Source/KASModuleWinch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Source/KASModuleWinch.cs -------------------------------------------------------------------------------- /LEGACY/Source/KAS_Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Source/KAS_Shared.cs -------------------------------------------------------------------------------- /LEGACY/Source/KAS_Tube.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Source/KAS_Tube.cs -------------------------------------------------------------------------------- /LEGACY/Source/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Source/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LEGACY/Source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Source/README.md -------------------------------------------------------------------------------- /LEGACY/Textures/cable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Textures/cable.png -------------------------------------------------------------------------------- /LEGACY/Textures/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Textures/icon.png -------------------------------------------------------------------------------- /LEGACY/Textures/pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Textures/pipe.png -------------------------------------------------------------------------------- /LEGACY/Textures/strut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/Textures/strut.png -------------------------------------------------------------------------------- /LEGACY/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/changelog.md -------------------------------------------------------------------------------- /LEGACY/settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LEGACY/settings.cfg -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Lang/en-us.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Lang/en-us.cfg -------------------------------------------------------------------------------- /Lang/es-es.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Lang/es-es.cfg -------------------------------------------------------------------------------- /Lang/fr-fr.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Lang/fr-fr.cfg -------------------------------------------------------------------------------- /Lang/it-it.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Lang/it-it.cfg -------------------------------------------------------------------------------- /Lang/pt-br.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Lang/pt-br.cfg -------------------------------------------------------------------------------- /Lang/ru.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Lang/ru.cfg -------------------------------------------------------------------------------- /Lang/zh-cn.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Lang/zh-cn.cfg -------------------------------------------------------------------------------- /Models/CommonConnector/Connector.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Models/CommonConnector/Connector.mu -------------------------------------------------------------------------------- /Models/CommonConnector/KAS_portm_cs.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Models/CommonConnector/KAS_portm_cs.dds -------------------------------------------------------------------------------- /Models/CommonConnector/KAS_portm_n.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Models/CommonConnector/KAS_portm_n.dds -------------------------------------------------------------------------------- /Models/HingeJoint/Normal_NRM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Models/HingeJoint/Normal_NRM.png -------------------------------------------------------------------------------- /Models/HingeJoint/UV_Joint.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Models/HingeJoint/UV_Joint.dds -------------------------------------------------------------------------------- /Models/HingeJoint/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Models/HingeJoint/model.mu -------------------------------------------------------------------------------- /Models/Piston/Normals4orig_NRM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Models/Piston/Normals4orig_NRM.png -------------------------------------------------------------------------------- /Models/Piston/Textures.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Models/Piston/Textures.dds -------------------------------------------------------------------------------- /Models/Piston/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Models/Piston/model.mu -------------------------------------------------------------------------------- /Models/Port1/KAS_portf_cs.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Models/Port1/KAS_portf_cs.dds -------------------------------------------------------------------------------- /Models/Port1/KAS_portf_n.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Models/Port1/KAS_portf_n.dds -------------------------------------------------------------------------------- /Models/Port1/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Models/Port1/model.mu -------------------------------------------------------------------------------- /Models/Pylon/P_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Models/Pylon/P_diff.dds -------------------------------------------------------------------------------- /Models/Pylon/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Models/Pylon/model.mu -------------------------------------------------------------------------------- /Models/Pylon/normal_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Models/Pylon/normal_NRM.dds -------------------------------------------------------------------------------- /Models/RigidJoint/Normal_NRM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Models/RigidJoint/Normal_NRM.png -------------------------------------------------------------------------------- /Models/RigidJoint/UV_Joint.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Models/RigidJoint/UV_Joint.dds -------------------------------------------------------------------------------- /Models/RigidJoint/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Models/RigidJoint/model.mu -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Parts/CableBrace/Head.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/CableBrace/Head.mu -------------------------------------------------------------------------------- /Parts/CableBrace/Labels.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/CableBrace/Labels.dds -------------------------------------------------------------------------------- /Parts/CableBrace/Lock.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/CableBrace/Lock.mu -------------------------------------------------------------------------------- /Parts/CableBrace/PCB1.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/CableBrace/PCB1.dds -------------------------------------------------------------------------------- /Parts/CableBrace/PCB1NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/CableBrace/PCB1NRM.dds -------------------------------------------------------------------------------- /Parts/CableBrace/Winch.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/CableBrace/Winch.mu -------------------------------------------------------------------------------- /Parts/CableBrace/part_CH1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/CableBrace/part_CH1.cfg -------------------------------------------------------------------------------- /Parts/CableBrace/part_PCB1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/CableBrace/part_PCB1.cfg -------------------------------------------------------------------------------- /Parts/GrapplingHook/KAS_Hook_Grapple_CS.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/GrapplingHook/KAS_Hook_Grapple_CS.dds -------------------------------------------------------------------------------- /Parts/GrapplingHook/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/GrapplingHook/model.mu -------------------------------------------------------------------------------- /Parts/GrapplingHook/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/GrapplingHook/part.cfg -------------------------------------------------------------------------------- /Parts/Harpoon/KAS_harpoon_cs.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/Harpoon/KAS_harpoon_cs.dds -------------------------------------------------------------------------------- /Parts/Harpoon/KAS_harpoon_n.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/Harpoon/KAS_harpoon_n.dds -------------------------------------------------------------------------------- /Parts/Harpoon/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/Harpoon/model.mu -------------------------------------------------------------------------------- /Parts/Harpoon/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/Harpoon/part.cfg -------------------------------------------------------------------------------- /Parts/JS1/KAS_portf_cs.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/JS1/KAS_portf_cs.dds -------------------------------------------------------------------------------- /Parts/JS1/KAS_portf_n.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/JS1/KAS_portf_n.dds -------------------------------------------------------------------------------- /Parts/JS1/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/JS1/model.mu -------------------------------------------------------------------------------- /Parts/JS1/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/JS1/part.cfg -------------------------------------------------------------------------------- /Parts/PortPylon/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/PortPylon/part.cfg -------------------------------------------------------------------------------- /Parts/PortPylonPwr/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/PortPylonPwr/part.cfg -------------------------------------------------------------------------------- /Parts/RTS1/Labels.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/RTS1/Labels.dds -------------------------------------------------------------------------------- /Parts/RTS1/PCB1.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/RTS1/PCB1.dds -------------------------------------------------------------------------------- /Parts/RTS1/PCB1NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/RTS1/PCB1NRM.dds -------------------------------------------------------------------------------- /Parts/RTS1/Winch.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/RTS1/Winch.mu -------------------------------------------------------------------------------- /Parts/RTS1/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/RTS1/part.cfg -------------------------------------------------------------------------------- /Parts/TB60/KAS_portf_cs.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/TB60/KAS_portf_cs.dds -------------------------------------------------------------------------------- /Parts/TB60/KAS_portf_n.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/TB60/KAS_portf_n.dds -------------------------------------------------------------------------------- /Parts/TB60/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/TB60/model.mu -------------------------------------------------------------------------------- /Parts/TB60/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/TB60/part.cfg -------------------------------------------------------------------------------- /Parts/TJ1/KAS_portf_cs.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/TJ1/KAS_portf_cs.dds -------------------------------------------------------------------------------- /Parts/TJ1/KAS_portf_n.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/TJ1/KAS_portf_n.dds -------------------------------------------------------------------------------- /Parts/TJ1/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/TJ1/model.mu -------------------------------------------------------------------------------- /Parts/TJ1/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/TJ1/part.cfg -------------------------------------------------------------------------------- /Parts/TJ2/KAS_portf_cs.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/TJ2/KAS_portf_cs.dds -------------------------------------------------------------------------------- /Parts/TJ2/KAS_portf_n.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/TJ2/KAS_portf_n.dds -------------------------------------------------------------------------------- /Parts/TJ2/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/TJ2/model.mu -------------------------------------------------------------------------------- /Parts/TJ2/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/TJ2/part.cfg -------------------------------------------------------------------------------- /Parts/Winch1/05WinchR_N.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/Winch1/05WinchR_N.dds -------------------------------------------------------------------------------- /Parts/Winch1/05WinchR_cs.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/Winch1/05WinchR_cs.dds -------------------------------------------------------------------------------- /Parts/Winch1/Winch.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/Winch1/Winch.mu -------------------------------------------------------------------------------- /Parts/Winch1/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/Winch1/part.cfg -------------------------------------------------------------------------------- /Parts/Winch2/05Winch_N.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/Winch2/05Winch_N.dds -------------------------------------------------------------------------------- /Parts/Winch2/05Winch_cs.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/Winch2/05Winch_cs.dds -------------------------------------------------------------------------------- /Parts/Winch2/Winch.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/Winch2/Winch.mu -------------------------------------------------------------------------------- /Parts/Winch2/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Parts/Winch2/part.cfg -------------------------------------------------------------------------------- /Patches/MM-CommunityCategoryKit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Patches/MM-CommunityCategoryKit.cfg -------------------------------------------------------------------------------- /Patches/MM-KIS.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Patches/MM-KIS.cfg -------------------------------------------------------------------------------- /Patches/MM-Kerbals.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Patches/MM-Kerbals.cfg -------------------------------------------------------------------------------- /Patches/MM-LegacyKASPipesPart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Patches/MM-LegacyKASPipesPart.txt -------------------------------------------------------------------------------- /Patches/MM-UnofficialUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Patches/MM-UnofficialUpdate.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/README.md -------------------------------------------------------------------------------- /Sounds/bipwrong.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/bipwrong.ogg -------------------------------------------------------------------------------- /Sounds/broke.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/broke.ogg -------------------------------------------------------------------------------- /Sounds/grab.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/grab.ogg -------------------------------------------------------------------------------- /Sounds/grappleAttachEva.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/grappleAttachEva.ogg -------------------------------------------------------------------------------- /Sounds/grappleAttachPart.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/grappleAttachPart.ogg -------------------------------------------------------------------------------- /Sounds/grappleAttachStatic.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/grappleAttachStatic.ogg -------------------------------------------------------------------------------- /Sounds/grappleDetach.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/grappleDetach.ogg -------------------------------------------------------------------------------- /Sounds/magnet.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/magnet.ogg -------------------------------------------------------------------------------- /Sounds/magnetAttach.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/magnetAttach.ogg -------------------------------------------------------------------------------- /Sounds/magnetDetach.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/magnetDetach.ogg -------------------------------------------------------------------------------- /Sounds/magnetstart.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/magnetstart.ogg -------------------------------------------------------------------------------- /Sounds/magnetstop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/magnetstop.ogg -------------------------------------------------------------------------------- /Sounds/plug.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/plug.ogg -------------------------------------------------------------------------------- /Sounds/plugdocked.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/plugdocked.ogg -------------------------------------------------------------------------------- /Sounds/rotorMotor.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/rotorMotor.ogg -------------------------------------------------------------------------------- /Sounds/rotorMotorstart.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/rotorMotorstart.ogg -------------------------------------------------------------------------------- /Sounds/rotorMotorstop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/rotorMotorstop.ogg -------------------------------------------------------------------------------- /Sounds/strutBuild.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/strutBuild.ogg -------------------------------------------------------------------------------- /Sounds/strutRemove.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/strutRemove.ogg -------------------------------------------------------------------------------- /Sounds/telescopicMotor.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/telescopicMotor.ogg -------------------------------------------------------------------------------- /Sounds/telescopicMotorstart.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/telescopicMotorstart.ogg -------------------------------------------------------------------------------- /Sounds/telescopicMotorstop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/telescopicMotorstop.ogg -------------------------------------------------------------------------------- /Sounds/telescopicSection.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/telescopicSection.ogg -------------------------------------------------------------------------------- /Sounds/unplug.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/unplug.ogg -------------------------------------------------------------------------------- /Sounds/unplugdocked.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/unplugdocked.ogg -------------------------------------------------------------------------------- /Sounds/winchHeavyMotorstart.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/winchHeavyMotorstart.ogg -------------------------------------------------------------------------------- /Sounds/winchMedLock.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/winchMedLock.ogg -------------------------------------------------------------------------------- /Sounds/winchMedMotor.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/winchMedMotor.ogg -------------------------------------------------------------------------------- /Sounds/winchMedMotorstart.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/winchMedMotorstart.ogg -------------------------------------------------------------------------------- /Sounds/winchMedMotorstop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/winchMedMotorstop.ogg -------------------------------------------------------------------------------- /Sounds/winchSmallEject.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/winchSmallEject.ogg -------------------------------------------------------------------------------- /Sounds/winchSmallLock.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/winchSmallLock.ogg -------------------------------------------------------------------------------- /Sounds/winchSmallMotor.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/winchSmallMotor.ogg -------------------------------------------------------------------------------- /Sounds/winchSmallMotorStart.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/winchSmallMotorStart.ogg -------------------------------------------------------------------------------- /Sounds/winchSmallMotorStop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Sounds/winchSmallMotorStop.ogg -------------------------------------------------------------------------------- /Source-API/KAS-API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/KAS-API.csproj -------------------------------------------------------------------------------- /Source-API/KSPAPI_HelpIndex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/KSPAPI_HelpIndex.xml -------------------------------------------------------------------------------- /Source-API/KSPDevUtilsAPI_HelpIndex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/KSPDevUtilsAPI_HelpIndex.xml -------------------------------------------------------------------------------- /Source-API/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source-API/Unity3D_HelpIndex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/Unity3D_HelpIndex.xml -------------------------------------------------------------------------------- /Source-API/api/GUILinkMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/api/GUILinkMode.cs -------------------------------------------------------------------------------- /Source-API/api/ICommonConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/api/ICommonConfig.cs -------------------------------------------------------------------------------- /Source-API/api/IKASEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/api/IKASEvents.cs -------------------------------------------------------------------------------- /Source-API/api/IKasJointEventsListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/api/IKasJointEventsListener.cs -------------------------------------------------------------------------------- /Source-API/api/IKasLinkEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/api/IKasLinkEvent.cs -------------------------------------------------------------------------------- /Source-API/api/ILinkCableJoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/api/ILinkCableJoint.cs -------------------------------------------------------------------------------- /Source-API/api/ILinkJoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/api/ILinkJoint.cs -------------------------------------------------------------------------------- /Source-API/api/ILinkPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/api/ILinkPeer.cs -------------------------------------------------------------------------------- /Source-API/api/ILinkRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/api/ILinkRenderer.cs -------------------------------------------------------------------------------- /Source-API/api/ILinkSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/api/ILinkSource.cs -------------------------------------------------------------------------------- /Source-API/api/ILinkStateEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/api/ILinkStateEventListener.cs -------------------------------------------------------------------------------- /Source-API/api/ILinkTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/api/ILinkTarget.cs -------------------------------------------------------------------------------- /Source-API/api/ILinkVesselInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/api/ILinkVesselInfo.cs -------------------------------------------------------------------------------- /Source-API/api/IWinchControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/api/IWinchControl.cs -------------------------------------------------------------------------------- /Source-API/api/KASAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/api/KASAPI.cs -------------------------------------------------------------------------------- /Source-API/api/LinkActorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/api/LinkActorType.cs -------------------------------------------------------------------------------- /Source-API/api/LinkState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/api/LinkState.cs -------------------------------------------------------------------------------- /Source-API/api/Utils/IAttachNodesUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/api/Utils/IAttachNodesUtils.cs -------------------------------------------------------------------------------- /Source-API/api/Utils/IJointUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/api/Utils/IJointUtils.cs -------------------------------------------------------------------------------- /Source-API/api/Utils/ILinkUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/api/Utils/ILinkUtils.cs -------------------------------------------------------------------------------- /Source-API/api/Utils/IPhysicsUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/api/Utils/IPhysicsUtils.cs -------------------------------------------------------------------------------- /Source-API/docs_project/.gitignore: -------------------------------------------------------------------------------- 1 | Help 2 | -------------------------------------------------------------------------------- /Source-API/docs_project/Examples/ICommonConfig-Examples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/docs_project/Examples/ICommonConfig-Examples.cs -------------------------------------------------------------------------------- /Source-API/docs_project/Examples/IKasEvents-Examples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/docs_project/Examples/IKasEvents-Examples.cs -------------------------------------------------------------------------------- /Source-API/docs_project/Examples/IKasJointEventsListener-Examples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/docs_project/Examples/IKasJointEventsListener-Examples.cs -------------------------------------------------------------------------------- /Source-API/docs_project/Examples/ILinkSource-Examples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/docs_project/Examples/ILinkSource-Examples.cs -------------------------------------------------------------------------------- /Source-API/docs_project/Examples/ILinkTarget-Examples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/docs_project/Examples/ILinkTarget-Examples.cs -------------------------------------------------------------------------------- /Source-API/docs_project/Examples/KAS-API-Examples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/docs_project/Examples/KAS-API-Examples.csproj -------------------------------------------------------------------------------- /Source-API/docs_project/Examples/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/docs_project/Examples/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source-API/docs_project/Examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/docs_project/Examples/README.md -------------------------------------------------------------------------------- /Source-API/docs_project/KAS_API.shfbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/docs_project/KAS_API.shfbproj -------------------------------------------------------------------------------- /Source-API/docs_project/KSP_API.shfbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/docs_project/KSP_API.shfbproj -------------------------------------------------------------------------------- /Source-API/docs_project/icons/KAS-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source-API/docs_project/icons/KAS-logo.png -------------------------------------------------------------------------------- /Source/KAS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/KAS.csproj -------------------------------------------------------------------------------- /Source/KSPAPI_HelpIndex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/KSPAPI_HelpIndex.xml -------------------------------------------------------------------------------- /Source/KSPDevUtilsAPI_HelpIndex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/KSPDevUtilsAPI_HelpIndex.xml -------------------------------------------------------------------------------- /Source/KSPDev_candidates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/KSPDev_candidates/README.md -------------------------------------------------------------------------------- /Source/LOCALIZATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/LOCALIZATION.md -------------------------------------------------------------------------------- /Source/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/README.md -------------------------------------------------------------------------------- /Source/SpecialDocTags.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/SpecialDocTags.xml -------------------------------------------------------------------------------- /Source/SpecialDocTagsExpand.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/SpecialDocTagsExpand.xslt -------------------------------------------------------------------------------- /Source/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/TODO.txt -------------------------------------------------------------------------------- /Source/Unity3D_HelpIndex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/Unity3D_HelpIndex.xml -------------------------------------------------------------------------------- /Source/api_impl/AttachNodesUtilsImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/api_impl/AttachNodesUtilsImpl.cs -------------------------------------------------------------------------------- /Source/api_impl/CommonConfigImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/api_impl/CommonConfigImpl.cs -------------------------------------------------------------------------------- /Source/api_impl/JointUtilsImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/api_impl/JointUtilsImpl.cs -------------------------------------------------------------------------------- /Source/api_impl/KASAPILauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/api_impl/KASAPILauncher.cs -------------------------------------------------------------------------------- /Source/api_impl/KasEventsImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/api_impl/KasEventsImpl.cs -------------------------------------------------------------------------------- /Source/api_impl/KasLinkEventImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/api_impl/KasLinkEventImpl.cs -------------------------------------------------------------------------------- /Source/api_impl/LinkUtilsImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/api_impl/LinkUtilsImpl.cs -------------------------------------------------------------------------------- /Source/api_impl/PhysicsUtilsImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/api_impl/PhysicsUtilsImpl.cs -------------------------------------------------------------------------------- /Source/api_impl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/api_impl/README.md -------------------------------------------------------------------------------- /Source/compatibility/PatchFilesProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/compatibility/PatchFilesProcessor.cs -------------------------------------------------------------------------------- /Source/controllers/ControllerPartEditorTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/controllers/ControllerPartEditorTool.cs -------------------------------------------------------------------------------- /Source/controllers/ControllerWinchRemote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/controllers/ControllerWinchRemote.cs -------------------------------------------------------------------------------- /Source/controllers/README.md: -------------------------------------------------------------------------------- 1 | This folder holds the singletone handlers. 2 | -------------------------------------------------------------------------------- /Source/debug/KASDebugAdjustableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/debug/KASDebugAdjustableAttribute.cs -------------------------------------------------------------------------------- /Source/modules/AbstractJoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/modules/AbstractJoint.cs -------------------------------------------------------------------------------- /Source/modules/AbstractLinkPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/modules/AbstractLinkPeer.cs -------------------------------------------------------------------------------- /Source/modules/AbstractPipeRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/modules/AbstractPipeRenderer.cs -------------------------------------------------------------------------------- /Source/modules/AbstractProceduralModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/modules/AbstractProceduralModel.cs -------------------------------------------------------------------------------- /Source/modules/KASInternalBrokenJointListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/modules/KASInternalBrokenJointListener.cs -------------------------------------------------------------------------------- /Source/modules/KASInternalPhysicalConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/modules/KASInternalPhysicalConnector.cs -------------------------------------------------------------------------------- /Source/modules/KASJointCableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/modules/KASJointCableBase.cs -------------------------------------------------------------------------------- /Source/modules/KASJointRigid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/modules/KASJointRigid.cs -------------------------------------------------------------------------------- /Source/modules/KASJointTowBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/modules/KASJointTowBar.cs -------------------------------------------------------------------------------- /Source/modules/KASJointTwoEndsSphere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/modules/KASJointTwoEndsSphere.cs -------------------------------------------------------------------------------- /Source/modules/KASLinkResourceConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/modules/KASLinkResourceConnector.cs -------------------------------------------------------------------------------- /Source/modules/KASLinkSourceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/modules/KASLinkSourceBase.cs -------------------------------------------------------------------------------- /Source/modules/KASLinkSourceInteractive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/modules/KASLinkSourceInteractive.cs -------------------------------------------------------------------------------- /Source/modules/KASLinkSourcePhysical.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/modules/KASLinkSourcePhysical.cs -------------------------------------------------------------------------------- /Source/modules/KASLinkTargetBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/modules/KASLinkTargetBase.cs -------------------------------------------------------------------------------- /Source/modules/KASLinkTargetKerbal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/modules/KASLinkTargetKerbal.cs -------------------------------------------------------------------------------- /Source/modules/KASLinkWinch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/modules/KASLinkWinch.cs -------------------------------------------------------------------------------- /Source/modules/KASModuleDart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/modules/KASModuleDart.cs -------------------------------------------------------------------------------- /Source/modules/KASRendererBezierPipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/modules/KASRendererBezierPipe.cs -------------------------------------------------------------------------------- /Source/modules/KASRendererPipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/modules/KASRendererPipe.cs -------------------------------------------------------------------------------- /Source/modules/KASRendererTelescopicPipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/modules/KASRendererTelescopicPipe.cs -------------------------------------------------------------------------------- /Source/modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Source/modules/README.md -------------------------------------------------------------------------------- /Textures/KASFilterIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Textures/KASFilterIcon.png -------------------------------------------------------------------------------- /Textures/ProceduralSteelCable.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Textures/ProceduralSteelCable.dds -------------------------------------------------------------------------------- /Textures/ProceduralSteelCableNRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Textures/ProceduralSteelCableNRM.dds -------------------------------------------------------------------------------- /Textures/corrugated_steel.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Textures/corrugated_steel.dds -------------------------------------------------------------------------------- /Textures/hose-d70-1kn.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Textures/hose-d70-1kn.dds -------------------------------------------------------------------------------- /Textures/hose-d70-1knNRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Textures/hose-d70-1knNRM.dds -------------------------------------------------------------------------------- /Tools/KspReleaseBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Tools/KspReleaseBuilder.py -------------------------------------------------------------------------------- /Tools/KspReleaseBuilder_License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Tools/KspReleaseBuilder_License.md -------------------------------------------------------------------------------- /Tools/PublishCurseForge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Tools/PublishCurseForge.py -------------------------------------------------------------------------------- /Tools/PublishGitHub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Tools/PublishGitHub.py -------------------------------------------------------------------------------- /Tools/PublishSpacedock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Tools/PublishSpacedock.py -------------------------------------------------------------------------------- /Tools/clients/CurseForgeClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Tools/clients/CurseForgeClient.py -------------------------------------------------------------------------------- /Tools/clients/GitHubClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Tools/clients/GitHubClient.py -------------------------------------------------------------------------------- /Tools/clients/SpacedockClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Tools/clients/SpacedockClient.py -------------------------------------------------------------------------------- /Tools/clients/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Tools/logging.conf -------------------------------------------------------------------------------- /Tools/make_binary.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Tools/make_binary.cmd -------------------------------------------------------------------------------- /Tools/msxsl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Tools/msxsl.exe -------------------------------------------------------------------------------- /Tools/publish_curseforge.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Tools/publish_curseforge.cmd -------------------------------------------------------------------------------- /Tools/publish_curseforge_args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Tools/publish_curseforge_args.txt -------------------------------------------------------------------------------- /Tools/publish_github.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Tools/publish_github.cmd -------------------------------------------------------------------------------- /Tools/publish_github_args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Tools/publish_github_args.txt -------------------------------------------------------------------------------- /Tools/publish_spacedock.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Tools/publish_spacedock.cmd -------------------------------------------------------------------------------- /Tools/publish_spacedock_args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Tools/publish_spacedock_args.txt -------------------------------------------------------------------------------- /Tools/release_setup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Tools/release_setup.json -------------------------------------------------------------------------------- /Tools/utils/ChangelogUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Tools/utils/ChangelogUtils.py -------------------------------------------------------------------------------- /Tools/utils/FormDataUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/Tools/utils/FormDataUtil.py -------------------------------------------------------------------------------- /Tools/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WikiImages/Brazil-small-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/WikiImages/Brazil-small-flag.png -------------------------------------------------------------------------------- /WikiImages/Chineese-small-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/WikiImages/Chineese-small-flag.png -------------------------------------------------------------------------------- /WikiImages/French-small-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/WikiImages/French-small-flag.png -------------------------------------------------------------------------------- /WikiImages/Italian-small-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/WikiImages/Italian-small-flag.png -------------------------------------------------------------------------------- /WikiImages/KIS-debug-features.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/WikiImages/KIS-debug-features.jpg -------------------------------------------------------------------------------- /WikiImages/Russian-small-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/WikiImages/Russian-small-flag.png -------------------------------------------------------------------------------- /WikiImages/Spanish-small-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/WikiImages/Spanish-small-flag.png -------------------------------------------------------------------------------- /WikiImages/Upgrade-v1.2-After.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/WikiImages/Upgrade-v1.2-After.jpg -------------------------------------------------------------------------------- /WikiImages/Upgrade-v1.2-Before.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/WikiImages/Upgrade-v1.2-Before.jpg -------------------------------------------------------------------------------- /WikiImages/Upgrade-v1.2-Confirmation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/WikiImages/Upgrade-v1.2-Confirmation.jpg -------------------------------------------------------------------------------- /docs/APIv2/SearchHelp.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/SearchHelp.aspx -------------------------------------------------------------------------------- /docs/APIv2/SearchHelp.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/SearchHelp.inc.php -------------------------------------------------------------------------------- /docs/APIv2/SearchHelp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/SearchHelp.php -------------------------------------------------------------------------------- /docs/APIv2/Web.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/Web.Config -------------------------------------------------------------------------------- /docs/APIv2/WebKI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/WebKI.xml -------------------------------------------------------------------------------- /docs/APIv2/WebTOC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/WebTOC.xml -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_100.json -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_101.json -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_102.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_102.json -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_103.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_103.json -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_104.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_104.json -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_105.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_105.json -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_106.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_106.json -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_107.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_107.json -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_108.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_108.json -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_109.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_109.json -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_110.json -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_111.json -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_112.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_112.json -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_114.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_114.json -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_115.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_115.json -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_116.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_116.json -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_117.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_117.json -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_118.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_118.json -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_119.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_119.json -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_121.json: -------------------------------------------------------------------------------- 1 | {"yield":[3538945],"yup":[4849665,5505025]} -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_122.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_122.json -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_97.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_97.json -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_98.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_98.json -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_99.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_99.json -------------------------------------------------------------------------------- /docs/APIv2/fti/FTI_Files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/fti/FTI_Files.json -------------------------------------------------------------------------------- /docs/APIv2/html/F_KASAPIv2_KASAPI_AttachNodesUtils.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/F_KASAPIv2_KASAPI_AttachNodesUtils.htm -------------------------------------------------------------------------------- /docs/APIv2/html/F_KASAPIv2_KASAPI_CommonConfig.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/F_KASAPIv2_KASAPI_CommonConfig.htm -------------------------------------------------------------------------------- /docs/APIv2/html/F_KASAPIv2_KASAPI_JointUtils.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/F_KASAPIv2_KASAPI_JointUtils.htm -------------------------------------------------------------------------------- /docs/APIv2/html/F_KASAPIv2_KASAPI_KasEvents.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/F_KASAPIv2_KASAPI_KasEvents.htm -------------------------------------------------------------------------------- /docs/APIv2/html/F_KASAPIv2_KASAPI_LinkUtils.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/F_KASAPIv2_KASAPI_LinkUtils.htm -------------------------------------------------------------------------------- /docs/APIv2/html/F_KASAPIv2_KASAPI_PhysicsUtils.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/F_KASAPIv2_KASAPI_PhysicsUtils.htm -------------------------------------------------------------------------------- /docs/APIv2/html/F_KASAPIv2_KASAPI_isLoaded.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/F_KASAPIv2_KASAPI_isLoaded.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Fields_T_KASAPIv2_KASAPI.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Fields_T_KASAPIv2_KASAPI.htm -------------------------------------------------------------------------------- /docs/APIv2/html/GeneralError.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/GeneralError.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_IAttachNodesUtils_AddNode.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_IAttachNodesUtils_AddNode.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_IAttachNodesUtils_CreateNode.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_IAttachNodesUtils_CreateNode.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_IAttachNodesUtils_DropNode.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_IAttachNodesUtils_DropNode.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_IAttachNodesUtils_GetTransformForNode.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_IAttachNodesUtils_GetTransformForNode.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_IAttachNodesUtils_NodeId.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_IAttachNodesUtils_NodeId.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_IAttachNodesUtils_ParseNodeFromString.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_IAttachNodesUtils_ParseNodeFromString.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_IJointUtils_DumpJoint.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_IJointUtils_DumpJoint.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_IJointUtils_DumpSpringJoint.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_IJointUtils_DumpSpringJoint.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_IJointUtils_ResetJoint.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_IJointUtils_ResetJoint.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_IJointUtils_SetupDistanceJoint.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_IJointUtils_SetupDistanceJoint.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_IJointUtils_SetupFixedJoint.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_IJointUtils_SetupFixedJoint.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_IJointUtils_SetupPrismaticJoint.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_IJointUtils_SetupPrismaticJoint.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_IJointUtils_SetupSphericalJoint.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_IJointUtils_SetupSphericalJoint.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_IKasJointEventsListener_OnKASJointBreak.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_IKasJointEventsListener_OnKASJointBreak.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkCableJoint_SetCableLength.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkCableJoint_SetCableLength.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkCableJoint_SetLockedOnCouple.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkCableJoint_SetLockedOnCouple.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkCableJoint_StartPhysicalHead.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkCableJoint_StartPhysicalHead.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkCableJoint_StopPhysicalHead.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkCableJoint_StopPhysicalHead.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkJoint_AdjustJoint.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkJoint_AdjustJoint.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkJoint_CheckConstraints.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkJoint_CheckConstraints.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkJoint_CreateJoint.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkJoint_CreateJoint.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkJoint_DropJoint.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkJoint_DropJoint.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkJoint_SetCoupleOnLinkMode.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkJoint_SetCoupleOnLinkMode.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkRenderer_CheckColliderHits.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkRenderer_CheckColliderHits.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkRenderer_GetMeshByName.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkRenderer_GetMeshByName.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkRenderer_StartRenderer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkRenderer_StartRenderer.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkRenderer_StopRenderer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkRenderer_StopRenderer.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkRenderer_UpdateLink.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkRenderer_UpdateLink.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkSource_BreakCurrentLink.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkSource_BreakCurrentLink.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkSource_CancelLinking.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkSource_CancelLinking.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkSource_CheckCanLinkTo.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkSource_CheckCanLinkTo.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkSource_LinkToTarget.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkSource_LinkToTarget.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkSource_LinkToTarget_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkSource_LinkToTarget_1.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkSource_StartLinking.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkSource_StartLinking.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkStateEventListener_OnKASLinkedState.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkStateEventListener_OnKASLinkedState.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkStateEventListener_OnKASNodeBlockedState.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkStateEventListener_OnKASNodeBlockedState.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkUtils_CoupleParts.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkUtils_CoupleParts.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkUtils_DecoupleParts.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkUtils_DecoupleParts.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_ILinkUtils_FindLinkPeer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_ILinkUtils_FindLinkPeer.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_IPhysicsUtils_ApplyGravity.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_IPhysicsUtils_ApplyGravity.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_IWinchControl_ReleaseCable.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_IWinchControl_ReleaseCable.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_IWinchControl_SetMotor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_IWinchControl_SetMotor.htm -------------------------------------------------------------------------------- /docs/APIv2/html/M_KASAPIv2_IWinchControl_StretchCable.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/M_KASAPIv2_IWinchControl_StretchCable.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Methods_T_KASAPIv2_IAttachNodesUtils.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Methods_T_KASAPIv2_IAttachNodesUtils.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Methods_T_KASAPIv2_IJointUtils.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Methods_T_KASAPIv2_IJointUtils.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Methods_T_KASAPIv2_IKasJointEventsListener.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Methods_T_KASAPIv2_IKasJointEventsListener.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Methods_T_KASAPIv2_ILinkCableJoint.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Methods_T_KASAPIv2_ILinkCableJoint.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Methods_T_KASAPIv2_ILinkJoint.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Methods_T_KASAPIv2_ILinkJoint.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Methods_T_KASAPIv2_ILinkRenderer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Methods_T_KASAPIv2_ILinkRenderer.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Methods_T_KASAPIv2_ILinkSource.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Methods_T_KASAPIv2_ILinkSource.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Methods_T_KASAPIv2_ILinkStateEventListener.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Methods_T_KASAPIv2_ILinkStateEventListener.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Methods_T_KASAPIv2_ILinkUtils.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Methods_T_KASAPIv2_ILinkUtils.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Methods_T_KASAPIv2_IPhysicsUtils.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Methods_T_KASAPIv2_IPhysicsUtils.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Methods_T_KASAPIv2_IWinchControl.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Methods_T_KASAPIv2_IWinchControl.htm -------------------------------------------------------------------------------- /docs/APIv2/html/N_KASAPIv2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/N_KASAPIv2.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Overload_KASAPIv2_ILinkSource_LinkToTarget.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Overload_KASAPIv2_ILinkSource_LinkToTarget.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ICommonConfig_keyDropConnector.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ICommonConfig_keyDropConnector.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ICommonConfig_keyPickupConnector.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ICommonConfig_keyPickupConnector.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ICommonConfig_sndPathBipWrong.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ICommonConfig_sndPathBipWrong.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_IKasEvents_OnLinkBroken.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_IKasEvents_OnLinkBroken.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_IKasEvents_OnLinkCreated.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_IKasEvents_OnLinkCreated.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_IKasEvents_OnStartLinking.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_IKasEvents_OnStartLinking.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_IKasEvents_OnStopLinking.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_IKasEvents_OnStopLinking.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_IKasLinkEvent_actor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_IKasLinkEvent_actor.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_IKasLinkEvent_source.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_IKasLinkEvent_source.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_IKasLinkEvent_target.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_IKasLinkEvent_target.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkCableJoint_cfgMaxCableLength.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkCableJoint_cfgMaxCableLength.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkCableJoint_deployedCableLength.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkCableJoint_deployedCableLength.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkCableJoint_headRb.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkCableJoint_headRb.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkCableJoint_isLockedWhenCoupled.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkCableJoint_isLockedWhenCoupled.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkCableJoint_realCableLength.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkCableJoint_realCableLength.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkJoint_cfgJointName.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkJoint_cfgJointName.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkJoint_coupleOnLinkMode.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkJoint_coupleOnLinkMode.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkJoint_isLinked.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkJoint_isLinked.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkJoint_linkSource.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkJoint_linkSource.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkJoint_linkTarget.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkJoint_linkTarget.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkPeer_attachNode.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkPeer_attachNode.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkPeer_cfgAttachNodeName.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkPeer_cfgAttachNodeName.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkPeer_cfgDependentNodeNames.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkPeer_cfgDependentNodeNames.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkPeer_cfgLinkType.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkPeer_cfgLinkType.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkPeer_coupleNode.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkPeer_coupleNode.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkPeer_isLinked.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkPeer_isLinked.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkPeer_isLocked.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkPeer_isLocked.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkPeer_isNodeBlocked.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkPeer_isNodeBlocked.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkPeer_linkNodeName.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkPeer_linkNodeName.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkPeer_linkPartId.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkPeer_linkPartId.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkPeer_linkState.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkPeer_linkState.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkPeer_nodeTransform.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkPeer_nodeTransform.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkPeer_otherPeer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkPeer_otherPeer.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkPeer_part.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkPeer_part.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkRenderer_cfgRendererName.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkRenderer_cfgRendererName.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkRenderer_colorOverride.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkRenderer_colorOverride.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkRenderer_isPhysicalCollider.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkRenderer_isPhysicalCollider.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkRenderer_isStarted.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkRenderer_isStarted.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkRenderer_shaderNameOverride.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkRenderer_shaderNameOverride.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkRenderer_sourceTransform.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkRenderer_sourceTransform.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkRenderer_targetTransform.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkRenderer_targetTransform.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkSource_linkJoint.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkSource_linkJoint.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkSource_linkRenderer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkSource_linkRenderer.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkSource_linkTarget.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkSource_linkTarget.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkTarget_linkSource.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkTarget_linkSource.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkVesselInfo_part.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkVesselInfo_part.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_ILinkVesselInfo_vesselInfo.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_ILinkVesselInfo_vesselInfo.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_IWinchControl_cfgMaxCableLength.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_IWinchControl_cfgMaxCableLength.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_IWinchControl_cfgMotorMaxSpeed.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_IWinchControl_cfgMotorMaxSpeed.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_IWinchControl_currentCableLength.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_IWinchControl_currentCableLength.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_IWinchControl_isConnectorLocked.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_IWinchControl_isConnectorLocked.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_IWinchControl_motorCurrentSpeed.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_IWinchControl_motorCurrentSpeed.htm -------------------------------------------------------------------------------- /docs/APIv2/html/P_KASAPIv2_IWinchControl_motorTargetSpeed.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/P_KASAPIv2_IWinchControl_motorTargetSpeed.htm -------------------------------------------------------------------------------- /docs/APIv2/html/PageNotFound.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/PageNotFound.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Properties_T_KASAPIv2_ICommonConfig.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Properties_T_KASAPIv2_ICommonConfig.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Properties_T_KASAPIv2_IKasEvents.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Properties_T_KASAPIv2_IKasEvents.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Properties_T_KASAPIv2_IKasLinkEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Properties_T_KASAPIv2_IKasLinkEvent.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Properties_T_KASAPIv2_ILinkCableJoint.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Properties_T_KASAPIv2_ILinkCableJoint.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Properties_T_KASAPIv2_ILinkJoint.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Properties_T_KASAPIv2_ILinkJoint.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Properties_T_KASAPIv2_ILinkPeer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Properties_T_KASAPIv2_ILinkPeer.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Properties_T_KASAPIv2_ILinkRenderer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Properties_T_KASAPIv2_ILinkRenderer.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Properties_T_KASAPIv2_ILinkSource.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Properties_T_KASAPIv2_ILinkSource.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Properties_T_KASAPIv2_ILinkTarget.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Properties_T_KASAPIv2_ILinkTarget.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Properties_T_KASAPIv2_ILinkVesselInfo.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Properties_T_KASAPIv2_ILinkVesselInfo.htm -------------------------------------------------------------------------------- /docs/APIv2/html/Properties_T_KASAPIv2_IWinchControl.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/Properties_T_KASAPIv2_IWinchControl.htm -------------------------------------------------------------------------------- /docs/APIv2/html/T_KASAPIv2_GUILinkMode.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/T_KASAPIv2_GUILinkMode.htm -------------------------------------------------------------------------------- /docs/APIv2/html/T_KASAPIv2_IAttachNodesUtils.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/T_KASAPIv2_IAttachNodesUtils.htm -------------------------------------------------------------------------------- /docs/APIv2/html/T_KASAPIv2_ICommonConfig.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/T_KASAPIv2_ICommonConfig.htm -------------------------------------------------------------------------------- /docs/APIv2/html/T_KASAPIv2_IJointUtils.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/T_KASAPIv2_IJointUtils.htm -------------------------------------------------------------------------------- /docs/APIv2/html/T_KASAPIv2_IKasEvents.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/T_KASAPIv2_IKasEvents.htm -------------------------------------------------------------------------------- /docs/APIv2/html/T_KASAPIv2_IKasJointEventsListener.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/T_KASAPIv2_IKasJointEventsListener.htm -------------------------------------------------------------------------------- /docs/APIv2/html/T_KASAPIv2_IKasLinkEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/T_KASAPIv2_IKasLinkEvent.htm -------------------------------------------------------------------------------- /docs/APIv2/html/T_KASAPIv2_ILinkCableJoint.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/T_KASAPIv2_ILinkCableJoint.htm -------------------------------------------------------------------------------- /docs/APIv2/html/T_KASAPIv2_ILinkJoint.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/T_KASAPIv2_ILinkJoint.htm -------------------------------------------------------------------------------- /docs/APIv2/html/T_KASAPIv2_ILinkPeer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/T_KASAPIv2_ILinkPeer.htm -------------------------------------------------------------------------------- /docs/APIv2/html/T_KASAPIv2_ILinkRenderer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/T_KASAPIv2_ILinkRenderer.htm -------------------------------------------------------------------------------- /docs/APIv2/html/T_KASAPIv2_ILinkSource.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/T_KASAPIv2_ILinkSource.htm -------------------------------------------------------------------------------- /docs/APIv2/html/T_KASAPIv2_ILinkStateEventListener.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/T_KASAPIv2_ILinkStateEventListener.htm -------------------------------------------------------------------------------- /docs/APIv2/html/T_KASAPIv2_ILinkTarget.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/T_KASAPIv2_ILinkTarget.htm -------------------------------------------------------------------------------- /docs/APIv2/html/T_KASAPIv2_ILinkUtils.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/T_KASAPIv2_ILinkUtils.htm -------------------------------------------------------------------------------- /docs/APIv2/html/T_KASAPIv2_ILinkVesselInfo.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/T_KASAPIv2_ILinkVesselInfo.htm -------------------------------------------------------------------------------- /docs/APIv2/html/T_KASAPIv2_IPhysicsUtils.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/T_KASAPIv2_IPhysicsUtils.htm -------------------------------------------------------------------------------- /docs/APIv2/html/T_KASAPIv2_IWinchControl.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/T_KASAPIv2_IWinchControl.htm -------------------------------------------------------------------------------- /docs/APIv2/html/T_KASAPIv2_KASAPI.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/T_KASAPIv2_KASAPI.htm -------------------------------------------------------------------------------- /docs/APIv2/html/T_KASAPIv2_LinkActorType.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/T_KASAPIv2_LinkActorType.htm -------------------------------------------------------------------------------- /docs/APIv2/html/T_KASAPIv2_LinkState.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/html/T_KASAPIv2_LinkState.htm -------------------------------------------------------------------------------- /docs/APIv2/icons/AlertCaution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/AlertCaution.png -------------------------------------------------------------------------------- /docs/APIv2/icons/AlertNote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/AlertNote.png -------------------------------------------------------------------------------- /docs/APIv2/icons/AlertSecurity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/AlertSecurity.png -------------------------------------------------------------------------------- /docs/APIv2/icons/CFW.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/CFW.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/CodeExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/CodeExample.png -------------------------------------------------------------------------------- /docs/APIv2/icons/KAS-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/KAS-logo.png -------------------------------------------------------------------------------- /docs/APIv2/icons/Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/Search.png -------------------------------------------------------------------------------- /docs/APIv2/icons/SectionCollapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/SectionCollapsed.png -------------------------------------------------------------------------------- /docs/APIv2/icons/SectionExpanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/SectionExpanded.png -------------------------------------------------------------------------------- /docs/APIv2/icons/TocClose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/TocClose.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/TocCollapsed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/TocCollapsed.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/TocExpanded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/TocExpanded.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/TocOpen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/TocOpen.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/favicon.ico -------------------------------------------------------------------------------- /docs/APIv2/icons/privclass.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/privclass.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/privdelegate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/privdelegate.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/privenumeration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/privenumeration.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/privevent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/privevent.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/privextension.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/privextension.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/privfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/privfield.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/privinterface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/privinterface.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/privmethod.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/privmethod.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/privproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/privproperty.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/privstructure.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/privstructure.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/protclass.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/protclass.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/protdelegate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/protdelegate.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/protenumeration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/protenumeration.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/protevent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/protevent.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/protextension.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/protextension.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/protfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/protfield.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/protinterface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/protinterface.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/protmethod.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/protmethod.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/protoperator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/protoperator.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/protproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/protproperty.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/protstructure.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/protstructure.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/pubclass.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/pubclass.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/pubdelegate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/pubdelegate.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/pubenumeration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/pubenumeration.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/pubevent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/pubevent.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/pubextension.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/pubextension.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/pubfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/pubfield.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/pubinterface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/pubinterface.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/pubmethod.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/pubmethod.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/puboperator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/puboperator.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/pubproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/pubproperty.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/pubstructure.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/pubstructure.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/slMobile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/slMobile.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/static.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/static.gif -------------------------------------------------------------------------------- /docs/APIv2/icons/xna.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/icons/xna.gif -------------------------------------------------------------------------------- /docs/APIv2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/index.html -------------------------------------------------------------------------------- /docs/APIv2/scripts/branding-Website.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/scripts/branding-Website.js -------------------------------------------------------------------------------- /docs/APIv2/scripts/branding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/scripts/branding.js -------------------------------------------------------------------------------- /docs/APIv2/scripts/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/scripts/clipboard.min.js -------------------------------------------------------------------------------- /docs/APIv2/scripts/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/scripts/highlight.js -------------------------------------------------------------------------------- /docs/APIv2/scripts/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/scripts/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /docs/APIv2/scripts/jquery-3.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/scripts/jquery-3.5.1.min.js -------------------------------------------------------------------------------- /docs/APIv2/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/search.html -------------------------------------------------------------------------------- /docs/APIv2/styles/branding-Help1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/styles/branding-Help1.css -------------------------------------------------------------------------------- /docs/APIv2/styles/branding-HelpViewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/styles/branding-HelpViewer.css -------------------------------------------------------------------------------- /docs/APIv2/styles/branding-Website.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/styles/branding-Website.css -------------------------------------------------------------------------------- /docs/APIv2/styles/branding-cs-CZ.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/styles/branding-cs-CZ.css -------------------------------------------------------------------------------- /docs/APIv2/styles/branding-de-DE.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/styles/branding-de-DE.css -------------------------------------------------------------------------------- /docs/APIv2/styles/branding-en-US.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/styles/branding-en-US.css -------------------------------------------------------------------------------- /docs/APIv2/styles/branding-es-ES.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/styles/branding-es-ES.css -------------------------------------------------------------------------------- /docs/APIv2/styles/branding-fr-FR.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/styles/branding-fr-FR.css -------------------------------------------------------------------------------- /docs/APIv2/styles/branding-it-IT.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/styles/branding-it-IT.css -------------------------------------------------------------------------------- /docs/APIv2/styles/branding-ja-JP.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/styles/branding-ja-JP.css -------------------------------------------------------------------------------- /docs/APIv2/styles/branding-ko-KR.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/styles/branding-ko-KR.css -------------------------------------------------------------------------------- /docs/APIv2/styles/branding-pl-PL.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/styles/branding-pl-PL.css -------------------------------------------------------------------------------- /docs/APIv2/styles/branding-pt-BR.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/styles/branding-pt-BR.css -------------------------------------------------------------------------------- /docs/APIv2/styles/branding-ru-RU.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/styles/branding-ru-RU.css -------------------------------------------------------------------------------- /docs/APIv2/styles/branding-tr-TR.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/styles/branding-tr-TR.css -------------------------------------------------------------------------------- /docs/APIv2/styles/branding-zh-CN.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/styles/branding-zh-CN.css -------------------------------------------------------------------------------- /docs/APIv2/styles/branding-zh-TW.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/styles/branding-zh-TW.css -------------------------------------------------------------------------------- /docs/APIv2/styles/branding.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/styles/branding.css -------------------------------------------------------------------------------- /docs/APIv2/styles/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/styles/highlight.css -------------------------------------------------------------------------------- /docs/APIv2/toc/Fields_T_KASAPIv2_KASAPI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Fields_T_KASAPIv2_KASAPI.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/Methods_T_KASAPIv2_IAttachNodesUtils.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Methods_T_KASAPIv2_IAttachNodesUtils.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/Methods_T_KASAPIv2_IJointUtils.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Methods_T_KASAPIv2_IJointUtils.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/Methods_T_KASAPIv2_IKasJointEventsListener.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Methods_T_KASAPIv2_IKasJointEventsListener.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/Methods_T_KASAPIv2_ILinkCableJoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Methods_T_KASAPIv2_ILinkCableJoint.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/Methods_T_KASAPIv2_ILinkJoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Methods_T_KASAPIv2_ILinkJoint.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/Methods_T_KASAPIv2_ILinkRenderer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Methods_T_KASAPIv2_ILinkRenderer.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/Methods_T_KASAPIv2_ILinkSource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Methods_T_KASAPIv2_ILinkSource.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/Methods_T_KASAPIv2_ILinkStateEventListener.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Methods_T_KASAPIv2_ILinkStateEventListener.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/Methods_T_KASAPIv2_ILinkUtils.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Methods_T_KASAPIv2_ILinkUtils.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/Methods_T_KASAPIv2_IPhysicsUtils.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Methods_T_KASAPIv2_IPhysicsUtils.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/Methods_T_KASAPIv2_IWinchControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Methods_T_KASAPIv2_IWinchControl.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/N_KASAPIv2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/N_KASAPIv2.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/Overload_KASAPIv2_ILinkSource_LinkToTarget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Overload_KASAPIv2_ILinkSource_LinkToTarget.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/Properties_T_KASAPIv2_ICommonConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Properties_T_KASAPIv2_ICommonConfig.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/Properties_T_KASAPIv2_IKasEvents.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Properties_T_KASAPIv2_IKasEvents.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/Properties_T_KASAPIv2_IKasLinkEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Properties_T_KASAPIv2_IKasLinkEvent.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/Properties_T_KASAPIv2_ILinkCableJoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Properties_T_KASAPIv2_ILinkCableJoint.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/Properties_T_KASAPIv2_ILinkJoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Properties_T_KASAPIv2_ILinkJoint.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/Properties_T_KASAPIv2_ILinkPeer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Properties_T_KASAPIv2_ILinkPeer.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/Properties_T_KASAPIv2_ILinkRenderer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Properties_T_KASAPIv2_ILinkRenderer.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/Properties_T_KASAPIv2_ILinkSource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Properties_T_KASAPIv2_ILinkSource.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/Properties_T_KASAPIv2_ILinkTarget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Properties_T_KASAPIv2_ILinkTarget.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/Properties_T_KASAPIv2_ILinkVesselInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Properties_T_KASAPIv2_ILinkVesselInfo.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/Properties_T_KASAPIv2_IWinchControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/Properties_T_KASAPIv2_IWinchControl.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/T_KASAPIv2_IAttachNodesUtils.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/T_KASAPIv2_IAttachNodesUtils.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/T_KASAPIv2_ICommonConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/T_KASAPIv2_ICommonConfig.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/T_KASAPIv2_IJointUtils.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/T_KASAPIv2_IJointUtils.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/T_KASAPIv2_IKasEvents.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/T_KASAPIv2_IKasEvents.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/T_KASAPIv2_IKasJointEventsListener.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/T_KASAPIv2_IKasJointEventsListener.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/T_KASAPIv2_IKasLinkEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/T_KASAPIv2_IKasLinkEvent.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/T_KASAPIv2_ILinkCableJoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/T_KASAPIv2_ILinkCableJoint.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/T_KASAPIv2_ILinkJoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/T_KASAPIv2_ILinkJoint.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/T_KASAPIv2_ILinkPeer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/T_KASAPIv2_ILinkPeer.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/T_KASAPIv2_ILinkRenderer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/T_KASAPIv2_ILinkRenderer.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/T_KASAPIv2_ILinkSource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/T_KASAPIv2_ILinkSource.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/T_KASAPIv2_ILinkStateEventListener.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/T_KASAPIv2_ILinkStateEventListener.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/T_KASAPIv2_ILinkTarget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/T_KASAPIv2_ILinkTarget.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/T_KASAPIv2_ILinkUtils.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/T_KASAPIv2_ILinkUtils.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/T_KASAPIv2_ILinkVesselInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/T_KASAPIv2_ILinkVesselInfo.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/T_KASAPIv2_IPhysicsUtils.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/T_KASAPIv2_IPhysicsUtils.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/T_KASAPIv2_IWinchControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/T_KASAPIv2_IWinchControl.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/T_KASAPIv2_KASAPI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/T_KASAPIv2_KASAPI.xml -------------------------------------------------------------------------------- /docs/APIv2/toc/roottoc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/APIv2/toc/roottoc.xml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/KAS/HEAD/settings.cfg --------------------------------------------------------------------------------