├── .gitattributes ├── .gitignore ├── .gitmodules ├── CRPLicense_CC.txt ├── GameData ├── CommunityCategoryKit │ ├── CCK.dll │ ├── CCK.version │ ├── CHANGELOG.txt │ ├── License_CC.txt │ ├── common-filters.cfg │ ├── extra-filters.cfg │ └── icons │ │ ├── Containers.png │ │ ├── LifeSupport_N.png │ │ ├── LifeSupport_S.png │ │ ├── Lights_N.png │ │ ├── Lights_S.png │ │ ├── Rovers_N.png │ │ └── Rovers_S.png ├── CommunityResourcePack │ ├── Asteroid.cfg │ ├── CHANGELOG.txt │ ├── CRP.version │ ├── CommonResources.cfg │ ├── License_CC.txt │ ├── Localization │ │ ├── de-de.cfg │ │ ├── en-us.cfg │ │ ├── es-es.cfg │ │ ├── fr-fr.cfg │ │ ├── ja.cfg │ │ ├── pt-br.cfg │ │ ├── ru.cfg │ │ └── zh-cn.cfg │ ├── ResourceConfigs │ │ ├── Alumina.cfg │ │ ├── Antimatter.cfg │ │ ├── ArgonGas.cfg │ │ ├── CarbonDioxide.cfg │ │ ├── Dirt.cfg │ │ ├── ExoticMinerals.cfg │ │ ├── Gypsum.cfg │ │ ├── Hydrates.cfg │ │ ├── IntakeLqd.cfg │ │ ├── Karbonite.cfg │ │ ├── Karborundum.cfg │ │ ├── LqdDeuterium.cfg │ │ ├── LqdHe3.cfg │ │ ├── LqdHydrogen.cfg │ │ ├── MetallicOre.cfg │ │ ├── Minerals.cfg │ │ ├── Monazite.cfg │ │ ├── Oxygen.cfg │ │ ├── RareMetals.cfg │ │ ├── Regolith.cfg │ │ ├── Silicates.cfg │ │ ├── Spodumene.cfg │ │ ├── Substrate.cfg │ │ ├── Uraninite.cfg │ │ ├── Water.cfg │ │ └── XenonGas.cfg │ └── SurfaceScanner.cfg ├── README.md ├── REPOSoftTech │ └── BackgroundResources │ │ ├── BackgroundResources.dll │ │ └── LICENSE.txt └── ThunderAerospace │ ├── ChangeLog.txt │ ├── TacLifeSupport │ ├── Icons │ │ ├── TACEditorCatIcon.png │ │ ├── TACToolTipBox.png │ │ ├── TACbtnRedCross.png │ │ ├── TACbtnResize.png │ │ ├── TACbtnResizeHeight.png │ │ ├── TACbtnResizeWidth.png │ │ ├── TACgreenIconAL.png │ │ ├── TACgreenIconTB.png │ │ ├── TACredIconAL.png │ │ ├── TACredIconTB.png │ │ ├── TACyellowIconAL.png │ │ ├── TACyellowIconTB.png │ │ └── resize.png │ ├── LifeSupport.cfg │ ├── Localization.cfg │ ├── MM_AddLifeSupportModule.cfg │ ├── MM_AddResources.cfg │ ├── MM_CrewablePartTests.cfg │ ├── MM_StockPartChanges.cfg │ ├── MM_TAC-LS_CTT.cfg.disabled │ └── TacLifeSupport.version │ ├── TacLifeSupportContainers │ ├── Food.cfg │ ├── FoodLarge.cfg │ ├── FoodLarge375.cfg │ ├── FoodSmall.cfg │ ├── FoodTexture.dds │ ├── LifeSupport.cfg │ ├── LifeSupportLarge.cfg │ ├── LifeSupportLarge375.cfg │ ├── LifeSupportSmall.cfg │ ├── Oxygen.cfg │ ├── OxygenLarge.cfg │ ├── OxygenLarge375.cfg │ ├── OxygenSmall.cfg │ ├── OxygenTexture.dds │ ├── TacContainer.mu │ ├── Texture.dds │ ├── Waste.cfg │ ├── WasteLarge.cfg │ ├── WasteLarge375.cfg │ ├── WasteSmall.cfg │ ├── WasteTexture.dds │ ├── Water.cfg │ ├── WaterLarge.cfg │ ├── WaterLarge375.cfg │ ├── WaterSmall.cfg │ └── WaterTexture.dds │ ├── TacLifeSupportHexCans │ ├── HexCanBreathingOxygen │ │ ├── LargeOxygen.cfg │ │ ├── NormalOxygen.cfg │ │ ├── SmallOxygen.cfg │ │ └── Texture.dds │ ├── HexCanDrinkingWater │ │ ├── LargeWater.cfg │ │ ├── NormalWater.cfg │ │ ├── SmallWater.cfg │ │ └── Texture.dds │ ├── HexCanFood │ │ ├── LargeFood.cfg │ │ ├── NormalFood.cfg │ │ ├── SmallFood.cfg │ │ └── Texture.dds │ ├── HexCanLifeSupport │ │ ├── LargeLifeSupport.cfg │ │ ├── NormalLifeSupport.cfg │ │ ├── SmallLifeSupport.cfg │ │ └── Texture.dds │ ├── HexCanWaste │ │ ├── LargeWaste.cfg │ │ ├── NormalWaste.cfg │ │ ├── SmallWaste.cfg │ │ └── WasteTexture.dds │ ├── LICENSE-HexCans.txt │ ├── Models │ │ ├── HexCan.mu │ │ └── HexCan000.png │ └── Readme-HexCans.txt │ ├── TacLifeSupportMFT │ ├── HexCans │ │ ├── LargeLifeSupport.cfg │ │ ├── NormalLifeSupport.cfg │ │ ├── SmallLifeSupport.cfg │ │ └── Texture.dds │ ├── LifeSupport.cfg │ ├── LifeSupportLarge.cfg │ ├── LifeSupportLarge375.cfg │ ├── LifeSupportSmall.cfg │ ├── MM_AddResourcesMFT.cfg │ ├── MM_HideNormalContainers.cfg │ ├── TacContainer.mu │ ├── TankDefinitions.cfg │ └── Texture.dds │ ├── TacLifeSupportRecyclers │ ├── AirFilter.cfg │ ├── AirFilterTexture.dds │ ├── CarbonExtractorTexture.dds │ ├── Recycler_CarbonExtractor.cfg │ ├── Recycler_CarbonExtractorLarge.cfg │ ├── Recycler_CarbonExtractorLarge375.cfg │ ├── Recycler_SabatierCarbonRecycler.cfg │ ├── Recycler_SabatierCarbonRecyclerLarge.cfg │ ├── Recycler_SabatierCarbonRecyclerLarge375.cfg │ ├── Recycler_WaterPurifier.cfg │ ├── Recycler_WaterPurifierLarge.cfg │ ├── Recycler_WaterPurifierLarge375.cfg │ ├── Recycler_WaterSplitter.cfg │ ├── SabatierTexture.dds │ ├── TacContainer.mu │ ├── Texture.png │ ├── WaterPurifierTexture.dds │ └── WaterSplitterTexture.dds │ └── TacLifeSupport_v0.14.0.0.txt ├── HexCanTextures.psd ├── KSPPath.inc ├── LICENSE ├── LICENSE.txt ├── README.md ├── Source ├── .vs │ └── TacLifeSupport │ │ └── v15 │ │ └── sqlite3 │ │ └── storage.ide ├── AddLifeSupport.cs ├── BuildAidWindow.cs ├── CommonProperties.proj ├── CrewMemberInfo.cs ├── EditorController.cs ├── EditorFilter.cs ├── EngineersReportLifeSupportTests.cs ├── GameSettings.cs ├── GlobalSettings.cs ├── InstallChecker.cs ├── LifeSupportController.cs ├── LifeSupportModule.cs ├── LifeSupportMonitoringWindow.cs ├── Properties │ └── AssemblyInfo.cs ├── RosterWindow.cs ├── SettingsParams.cs ├── SpaceCenterManager.cs ├── TacGenericConverter.cs ├── TacLifeSupport.cs ├── TacLifeSupport.csproj ├── TacLifeSupport.sln ├── Textures.cs ├── VesselInfo.cs ├── packages.config └── packages │ └── Mono.Unofficial.pdb2mdb.4.2.3.4 │ └── Mono.Unofficial.pdb2mdb.4.2.3.4.nupkg ├── TacLib ├── LICENSE.txt ├── Readme.txt ├── Source │ ├── Logging.cs │ ├── PopupWindow.cs │ ├── Utilities.cs │ └── Window.cs └── resize.psd ├── Unity ├── .gitignore └── Assets │ ├── .gitignore │ ├── ContainerScene.unity │ ├── Container_layout.png │ ├── Container_texture.png │ ├── Materials │ └── Container_texture.mat │ ├── MyContainer.blend │ └── Texture.psd ├── deploy.bat ├── package.bat └── test.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CRPLicense_CC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/CRPLicense_CC.txt -------------------------------------------------------------------------------- /GameData/CommunityCategoryKit/CCK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityCategoryKit/CCK.dll -------------------------------------------------------------------------------- /GameData/CommunityCategoryKit/CCK.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityCategoryKit/CCK.version -------------------------------------------------------------------------------- /GameData/CommunityCategoryKit/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityCategoryKit/CHANGELOG.txt -------------------------------------------------------------------------------- /GameData/CommunityCategoryKit/License_CC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityCategoryKit/License_CC.txt -------------------------------------------------------------------------------- /GameData/CommunityCategoryKit/common-filters.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityCategoryKit/common-filters.cfg -------------------------------------------------------------------------------- /GameData/CommunityCategoryKit/extra-filters.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityCategoryKit/extra-filters.cfg -------------------------------------------------------------------------------- /GameData/CommunityCategoryKit/icons/Containers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityCategoryKit/icons/Containers.png -------------------------------------------------------------------------------- /GameData/CommunityCategoryKit/icons/LifeSupport_N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityCategoryKit/icons/LifeSupport_N.png -------------------------------------------------------------------------------- /GameData/CommunityCategoryKit/icons/LifeSupport_S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityCategoryKit/icons/LifeSupport_S.png -------------------------------------------------------------------------------- /GameData/CommunityCategoryKit/icons/Lights_N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityCategoryKit/icons/Lights_N.png -------------------------------------------------------------------------------- /GameData/CommunityCategoryKit/icons/Lights_S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityCategoryKit/icons/Lights_S.png -------------------------------------------------------------------------------- /GameData/CommunityCategoryKit/icons/Rovers_N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityCategoryKit/icons/Rovers_N.png -------------------------------------------------------------------------------- /GameData/CommunityCategoryKit/icons/Rovers_S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityCategoryKit/icons/Rovers_S.png -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/Asteroid.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/Asteroid.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/CHANGELOG.txt -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/CRP.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/CRP.version -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/CommonResources.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/CommonResources.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/License_CC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/License_CC.txt -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/Localization/de-de.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/Localization/de-de.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/Localization/en-us.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/Localization/en-us.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/Localization/es-es.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/Localization/es-es.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/Localization/fr-fr.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/Localization/fr-fr.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/Localization/ja.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/Localization/ja.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/Localization/pt-br.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/Localization/pt-br.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/Localization/ru.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/Localization/ru.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/Localization/zh-cn.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/Localization/zh-cn.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/Alumina.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/Alumina.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/Antimatter.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/Antimatter.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/ArgonGas.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/ArgonGas.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/CarbonDioxide.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/CarbonDioxide.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/Dirt.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/Dirt.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/ExoticMinerals.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/ExoticMinerals.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/Gypsum.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/Gypsum.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/Hydrates.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/Hydrates.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/IntakeLqd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/IntakeLqd.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/Karbonite.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/Karbonite.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/Karborundum.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/Karborundum.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/LqdDeuterium.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/LqdDeuterium.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/LqdHe3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/LqdHe3.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/LqdHydrogen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/LqdHydrogen.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/MetallicOre.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/MetallicOre.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/Minerals.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/Minerals.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/Monazite.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/Monazite.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/Oxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/Oxygen.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/RareMetals.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/RareMetals.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/Regolith.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/Regolith.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/Silicates.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/Silicates.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/Spodumene.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/Spodumene.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/Substrate.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/Substrate.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/Uraninite.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/Uraninite.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/Water.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/Water.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/ResourceConfigs/XenonGas.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/ResourceConfigs/XenonGas.cfg -------------------------------------------------------------------------------- /GameData/CommunityResourcePack/SurfaceScanner.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/CommunityResourcePack/SurfaceScanner.cfg -------------------------------------------------------------------------------- /GameData/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/README.md -------------------------------------------------------------------------------- /GameData/REPOSoftTech/BackgroundResources/BackgroundResources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/REPOSoftTech/BackgroundResources/BackgroundResources.dll -------------------------------------------------------------------------------- /GameData/REPOSoftTech/BackgroundResources/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/REPOSoftTech/BackgroundResources/LICENSE.txt -------------------------------------------------------------------------------- /GameData/ThunderAerospace/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/ChangeLog.txt -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupport/Icons/TACEditorCatIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupport/Icons/TACEditorCatIcon.png -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupport/Icons/TACToolTipBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupport/Icons/TACToolTipBox.png -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupport/Icons/TACbtnRedCross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupport/Icons/TACbtnRedCross.png -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupport/Icons/TACbtnResize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupport/Icons/TACbtnResize.png -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupport/Icons/TACbtnResizeHeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupport/Icons/TACbtnResizeHeight.png -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupport/Icons/TACbtnResizeWidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupport/Icons/TACbtnResizeWidth.png -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupport/Icons/TACgreenIconAL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupport/Icons/TACgreenIconAL.png -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupport/Icons/TACgreenIconTB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupport/Icons/TACgreenIconTB.png -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupport/Icons/TACredIconAL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupport/Icons/TACredIconAL.png -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupport/Icons/TACredIconTB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupport/Icons/TACredIconTB.png -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupport/Icons/TACyellowIconAL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupport/Icons/TACyellowIconAL.png -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupport/Icons/TACyellowIconTB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupport/Icons/TACyellowIconTB.png -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupport/Icons/resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupport/Icons/resize.png -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupport/LifeSupport.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupport/LifeSupport.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupport/Localization.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupport/Localization.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupport/MM_AddLifeSupportModule.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupport/MM_AddLifeSupportModule.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupport/MM_AddResources.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupport/MM_AddResources.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupport/MM_CrewablePartTests.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupport/MM_CrewablePartTests.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupport/MM_StockPartChanges.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupport/MM_StockPartChanges.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupport/MM_TAC-LS_CTT.cfg.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupport/MM_TAC-LS_CTT.cfg.disabled -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupport/TacLifeSupport.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupport/TacLifeSupport.version -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/Food.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/Food.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/FoodLarge.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/FoodLarge.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/FoodLarge375.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/FoodLarge375.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/FoodSmall.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/FoodSmall.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/FoodTexture.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/FoodTexture.dds -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/LifeSupport.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/LifeSupport.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/LifeSupportLarge.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/LifeSupportLarge.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/LifeSupportLarge375.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/LifeSupportLarge375.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/LifeSupportSmall.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/LifeSupportSmall.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/Oxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/Oxygen.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/OxygenLarge.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/OxygenLarge.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/OxygenLarge375.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/OxygenLarge375.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/OxygenSmall.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/OxygenSmall.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/OxygenTexture.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/OxygenTexture.dds -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/TacContainer.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/TacContainer.mu -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/Texture.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/Texture.dds -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/Waste.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/Waste.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/WasteLarge.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/WasteLarge.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/WasteLarge375.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/WasteLarge375.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/WasteSmall.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/WasteSmall.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/WasteTexture.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/WasteTexture.dds -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/Water.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/Water.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/WaterLarge.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/WaterLarge.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/WaterLarge375.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/WaterLarge375.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/WaterSmall.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/WaterSmall.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportContainers/WaterTexture.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportContainers/WaterTexture.dds -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanBreathingOxygen/LargeOxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanBreathingOxygen/LargeOxygen.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanBreathingOxygen/NormalOxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanBreathingOxygen/NormalOxygen.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanBreathingOxygen/SmallOxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanBreathingOxygen/SmallOxygen.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanBreathingOxygen/Texture.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanBreathingOxygen/Texture.dds -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanDrinkingWater/LargeWater.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanDrinkingWater/LargeWater.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanDrinkingWater/NormalWater.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanDrinkingWater/NormalWater.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanDrinkingWater/SmallWater.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanDrinkingWater/SmallWater.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanDrinkingWater/Texture.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanDrinkingWater/Texture.dds -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanFood/LargeFood.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanFood/LargeFood.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanFood/NormalFood.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanFood/NormalFood.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanFood/SmallFood.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanFood/SmallFood.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanFood/Texture.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanFood/Texture.dds -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanLifeSupport/LargeLifeSupport.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanLifeSupport/LargeLifeSupport.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanLifeSupport/NormalLifeSupport.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanLifeSupport/NormalLifeSupport.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanLifeSupport/SmallLifeSupport.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanLifeSupport/SmallLifeSupport.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanLifeSupport/Texture.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanLifeSupport/Texture.dds -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanWaste/LargeWaste.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanWaste/LargeWaste.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanWaste/NormalWaste.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanWaste/NormalWaste.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanWaste/SmallWaste.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanWaste/SmallWaste.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanWaste/WasteTexture.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/HexCanWaste/WasteTexture.dds -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/LICENSE-HexCans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/LICENSE-HexCans.txt -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/Models/HexCan.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/Models/HexCan.mu -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/Models/HexCan000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/Models/HexCan000.png -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportHexCans/Readme-HexCans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportHexCans/Readme-HexCans.txt -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportMFT/HexCans/LargeLifeSupport.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportMFT/HexCans/LargeLifeSupport.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportMFT/HexCans/NormalLifeSupport.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportMFT/HexCans/NormalLifeSupport.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportMFT/HexCans/SmallLifeSupport.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportMFT/HexCans/SmallLifeSupport.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportMFT/HexCans/Texture.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportMFT/HexCans/Texture.dds -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportMFT/LifeSupport.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportMFT/LifeSupport.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportMFT/LifeSupportLarge.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportMFT/LifeSupportLarge.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportMFT/LifeSupportLarge375.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportMFT/LifeSupportLarge375.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportMFT/LifeSupportSmall.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportMFT/LifeSupportSmall.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportMFT/MM_AddResourcesMFT.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportMFT/MM_AddResourcesMFT.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportMFT/MM_HideNormalContainers.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportMFT/MM_HideNormalContainers.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportMFT/TacContainer.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportMFT/TacContainer.mu -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportMFT/TankDefinitions.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportMFT/TankDefinitions.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportMFT/Texture.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportMFT/Texture.dds -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportRecyclers/AirFilter.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportRecyclers/AirFilter.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportRecyclers/AirFilterTexture.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportRecyclers/AirFilterTexture.dds -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportRecyclers/CarbonExtractorTexture.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportRecyclers/CarbonExtractorTexture.dds -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportRecyclers/Recycler_CarbonExtractor.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportRecyclers/Recycler_CarbonExtractor.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportRecyclers/Recycler_CarbonExtractorLarge.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportRecyclers/Recycler_CarbonExtractorLarge.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportRecyclers/Recycler_CarbonExtractorLarge375.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportRecyclers/Recycler_CarbonExtractorLarge375.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportRecyclers/Recycler_SabatierCarbonRecycler.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportRecyclers/Recycler_SabatierCarbonRecycler.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportRecyclers/Recycler_SabatierCarbonRecyclerLarge.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportRecyclers/Recycler_SabatierCarbonRecyclerLarge.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportRecyclers/Recycler_SabatierCarbonRecyclerLarge375.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportRecyclers/Recycler_SabatierCarbonRecyclerLarge375.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportRecyclers/Recycler_WaterPurifier.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportRecyclers/Recycler_WaterPurifier.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportRecyclers/Recycler_WaterPurifierLarge.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportRecyclers/Recycler_WaterPurifierLarge.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportRecyclers/Recycler_WaterPurifierLarge375.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportRecyclers/Recycler_WaterPurifierLarge375.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportRecyclers/Recycler_WaterSplitter.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportRecyclers/Recycler_WaterSplitter.cfg -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportRecyclers/SabatierTexture.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportRecyclers/SabatierTexture.dds -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportRecyclers/TacContainer.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportRecyclers/TacContainer.mu -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportRecyclers/Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportRecyclers/Texture.png -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportRecyclers/WaterPurifierTexture.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportRecyclers/WaterPurifierTexture.dds -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupportRecyclers/WaterSplitterTexture.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupportRecyclers/WaterSplitterTexture.dds -------------------------------------------------------------------------------- /GameData/ThunderAerospace/TacLifeSupport_v0.14.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/GameData/ThunderAerospace/TacLifeSupport_v0.14.0.0.txt -------------------------------------------------------------------------------- /HexCanTextures.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/HexCanTextures.psd -------------------------------------------------------------------------------- /KSPPath.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/KSPPath.inc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/README.md -------------------------------------------------------------------------------- /Source/.vs/TacLifeSupport/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/.vs/TacLifeSupport/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Source/AddLifeSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/AddLifeSupport.cs -------------------------------------------------------------------------------- /Source/BuildAidWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/BuildAidWindow.cs -------------------------------------------------------------------------------- /Source/CommonProperties.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/CommonProperties.proj -------------------------------------------------------------------------------- /Source/CrewMemberInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/CrewMemberInfo.cs -------------------------------------------------------------------------------- /Source/EditorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/EditorController.cs -------------------------------------------------------------------------------- /Source/EditorFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/EditorFilter.cs -------------------------------------------------------------------------------- /Source/EngineersReportLifeSupportTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/EngineersReportLifeSupportTests.cs -------------------------------------------------------------------------------- /Source/GameSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/GameSettings.cs -------------------------------------------------------------------------------- /Source/GlobalSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/GlobalSettings.cs -------------------------------------------------------------------------------- /Source/InstallChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/InstallChecker.cs -------------------------------------------------------------------------------- /Source/LifeSupportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/LifeSupportController.cs -------------------------------------------------------------------------------- /Source/LifeSupportModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/LifeSupportModule.cs -------------------------------------------------------------------------------- /Source/LifeSupportMonitoringWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/LifeSupportMonitoringWindow.cs -------------------------------------------------------------------------------- /Source/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/RosterWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/RosterWindow.cs -------------------------------------------------------------------------------- /Source/SettingsParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/SettingsParams.cs -------------------------------------------------------------------------------- /Source/SpaceCenterManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/SpaceCenterManager.cs -------------------------------------------------------------------------------- /Source/TacGenericConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/TacGenericConverter.cs -------------------------------------------------------------------------------- /Source/TacLifeSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/TacLifeSupport.cs -------------------------------------------------------------------------------- /Source/TacLifeSupport.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/TacLifeSupport.csproj -------------------------------------------------------------------------------- /Source/TacLifeSupport.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/TacLifeSupport.sln -------------------------------------------------------------------------------- /Source/Textures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/Textures.cs -------------------------------------------------------------------------------- /Source/VesselInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/VesselInfo.cs -------------------------------------------------------------------------------- /Source/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/packages.config -------------------------------------------------------------------------------- /Source/packages/Mono.Unofficial.pdb2mdb.4.2.3.4/Mono.Unofficial.pdb2mdb.4.2.3.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Source/packages/Mono.Unofficial.pdb2mdb.4.2.3.4/Mono.Unofficial.pdb2mdb.4.2.3.4.nupkg -------------------------------------------------------------------------------- /TacLib/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/TacLib/LICENSE.txt -------------------------------------------------------------------------------- /TacLib/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/TacLib/Readme.txt -------------------------------------------------------------------------------- /TacLib/Source/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/TacLib/Source/Logging.cs -------------------------------------------------------------------------------- /TacLib/Source/PopupWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/TacLib/Source/PopupWindow.cs -------------------------------------------------------------------------------- /TacLib/Source/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/TacLib/Source/Utilities.cs -------------------------------------------------------------------------------- /TacLib/Source/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/TacLib/Source/Window.cs -------------------------------------------------------------------------------- /TacLib/resize.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/TacLib/resize.psd -------------------------------------------------------------------------------- /Unity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Unity/.gitignore -------------------------------------------------------------------------------- /Unity/Assets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Unity/Assets/.gitignore -------------------------------------------------------------------------------- /Unity/Assets/ContainerScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Unity/Assets/ContainerScene.unity -------------------------------------------------------------------------------- /Unity/Assets/Container_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Unity/Assets/Container_layout.png -------------------------------------------------------------------------------- /Unity/Assets/Container_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Unity/Assets/Container_texture.png -------------------------------------------------------------------------------- /Unity/Assets/Materials/Container_texture.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Unity/Assets/Materials/Container_texture.mat -------------------------------------------------------------------------------- /Unity/Assets/MyContainer.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Unity/Assets/MyContainer.blend -------------------------------------------------------------------------------- /Unity/Assets/Texture.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/Unity/Assets/Texture.psd -------------------------------------------------------------------------------- /deploy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/deploy.bat -------------------------------------------------------------------------------- /package.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/package.bat -------------------------------------------------------------------------------- /test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/TacLifeSupport/HEAD/test.bat --------------------------------------------------------------------------------