├── .gitattributes ├── .gitignore ├── GameData └── PhysicsHold │ ├── Icons license.txt │ ├── icons8-close-window-32.png │ ├── icons8-merge-documents-64.png │ └── icons8-strength-64.png ├── KSPDevPath.xml.copyMe ├── LICENSE ├── PhysicsHold.sln ├── PhysicsHold ├── DialogGuiVesselWidget.cs ├── HarmonyPatches.cs ├── Lib.cs ├── ModulePackedDebugTest.cs ├── PhysicsHold.csproj ├── PhysicsHoldManager.cs ├── Properties │ └── AssemblyInfo.cs ├── VesselPhysicsHold.cs └── packages.config ├── ReadMe.md └── Screenshot.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotmachine/PhysicsHold/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotmachine/PhysicsHold/HEAD/.gitignore -------------------------------------------------------------------------------- /GameData/PhysicsHold/Icons license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotmachine/PhysicsHold/HEAD/GameData/PhysicsHold/Icons license.txt -------------------------------------------------------------------------------- /GameData/PhysicsHold/icons8-close-window-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotmachine/PhysicsHold/HEAD/GameData/PhysicsHold/icons8-close-window-32.png -------------------------------------------------------------------------------- /GameData/PhysicsHold/icons8-merge-documents-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotmachine/PhysicsHold/HEAD/GameData/PhysicsHold/icons8-merge-documents-64.png -------------------------------------------------------------------------------- /GameData/PhysicsHold/icons8-strength-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotmachine/PhysicsHold/HEAD/GameData/PhysicsHold/icons8-strength-64.png -------------------------------------------------------------------------------- /KSPDevPath.xml.copyMe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotmachine/PhysicsHold/HEAD/KSPDevPath.xml.copyMe -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotmachine/PhysicsHold/HEAD/LICENSE -------------------------------------------------------------------------------- /PhysicsHold.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotmachine/PhysicsHold/HEAD/PhysicsHold.sln -------------------------------------------------------------------------------- /PhysicsHold/DialogGuiVesselWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotmachine/PhysicsHold/HEAD/PhysicsHold/DialogGuiVesselWidget.cs -------------------------------------------------------------------------------- /PhysicsHold/HarmonyPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotmachine/PhysicsHold/HEAD/PhysicsHold/HarmonyPatches.cs -------------------------------------------------------------------------------- /PhysicsHold/Lib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotmachine/PhysicsHold/HEAD/PhysicsHold/Lib.cs -------------------------------------------------------------------------------- /PhysicsHold/ModulePackedDebugTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotmachine/PhysicsHold/HEAD/PhysicsHold/ModulePackedDebugTest.cs -------------------------------------------------------------------------------- /PhysicsHold/PhysicsHold.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotmachine/PhysicsHold/HEAD/PhysicsHold/PhysicsHold.csproj -------------------------------------------------------------------------------- /PhysicsHold/PhysicsHoldManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotmachine/PhysicsHold/HEAD/PhysicsHold/PhysicsHoldManager.cs -------------------------------------------------------------------------------- /PhysicsHold/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotmachine/PhysicsHold/HEAD/PhysicsHold/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PhysicsHold/VesselPhysicsHold.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotmachine/PhysicsHold/HEAD/PhysicsHold/VesselPhysicsHold.cs -------------------------------------------------------------------------------- /PhysicsHold/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotmachine/PhysicsHold/HEAD/PhysicsHold/packages.config -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotmachine/PhysicsHold/HEAD/ReadMe.md -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotmachine/PhysicsHold/HEAD/Screenshot.png --------------------------------------------------------------------------------