├── GameData └── RealISRU │ ├── Parts │ ├── Assets │ │ ├── FuelCell.mu │ │ ├── KA_Analyzer_01.mu │ │ ├── KA_Drill_Radial_04.mu │ │ ├── KA_Generator_02.mu │ │ ├── KarGenny.dds │ │ ├── KarGenny_glow.dds │ │ ├── KarGenny_norm_NRM.dds │ │ ├── Karbonite_Antenna.dds │ │ ├── Karbonite_Antenna_GLOW.dds │ │ ├── Karbonite_Antenna_norm_NRM.dds │ │ ├── container.mu │ │ ├── converter-25-n_NRM.dds │ │ ├── converter-25.dds │ │ ├── core_pass.mu │ │ ├── core_tank.mu │ │ ├── drill-radial-large-n_NRM.dds │ │ ├── drill-radial-large.dds │ │ ├── elektron.mu │ │ ├── hex_HaberBosch.mu │ │ ├── hex_PSA.mu │ │ ├── hex_sabatier.mu │ │ ├── realisru_hex_1.dds │ │ ├── tank.mu │ │ └── tank_b.mu │ ├── HexAssembly │ │ ├── HaberBosch.cfg │ │ ├── PSA.cfg │ │ ├── container.cfg │ │ ├── core_pass.cfg │ │ ├── core_tank.cfg │ │ ├── elektron.cfg │ │ ├── fuelcell.cfg │ │ ├── sabatier.cfg │ │ ├── tank.cfg │ │ └── tank_b.cfg │ ├── KA_Analyzer │ │ ├── Analyzer_Copies.cfg │ │ └── KA_Analyzer.cfg │ ├── KA_Drill_Radial_04 │ │ └── KA_Drill_Radial_04.cfg │ ├── KA_Generator_02 │ │ ├── Generator_Copies.cfg │ │ └── KA_Generator_02.cfg │ ├── MMParts │ │ ├── 000_init.cfg │ │ ├── AtmosphericIntake.cfg │ │ ├── ComboParts │ │ │ └── ComboSabatierElectrolysis.cfg │ │ ├── FFS_Tanks.cfg │ │ ├── IFS_Tanks.cfg │ │ ├── ISRU.cfg │ │ ├── MFT_Tanks.cfg │ │ ├── Mars_ISRU.cfg │ │ ├── RF_Tanks.cfg │ │ ├── Refrigerator.cfg │ │ └── TankSpam.cfg │ └── scienceDrill │ │ ├── Texture.dds │ │ ├── model.mu │ │ └── part.cfg │ └── Resources │ ├── Asteroid.cfg │ ├── Ceres-Dres.cfg │ ├── Earth-Kerbin.cfg │ ├── Mars-Duna.cfg │ ├── Moon-Mun.cfg │ ├── ResourceScanner.cfg │ ├── Titan-Laythe.cfg │ ├── Venus-Eve.cfg │ └── resources.cfg ├── LICENSE.txt ├── RealISRU.komodoproject ├── RealISRU.sln ├── RealISRU.userprefs ├── RealISRU ├── ModuleGlobalAtmosphericResourceScanner.cs ├── Properties │ └── AssemblyInfo.cs └── RealISRU.csproj ├── Ships └── VAB │ ├── RealISRU Test Craft 10.craft │ └── RealISRU Test Craft 1000.craft ├── Source ├── RealISRU_hex_FuelCell.unity ├── RealISRU_hex_PSA.unity ├── RealISRU_hex_core_pass.unity ├── RealISRU_hex_core_tank.unity ├── RealISRU_tank.unity ├── RealISRU_tank_b.unity ├── hex2.blend ├── hex2_PSA.blend ├── hex2_elektron.blend ├── hex2_fuel_cell.blend ├── hex2_p.blend ├── hex2_tank.blend ├── hex2_tank_b.blend ├── readme.txt └── realISRU_elektron.unity └── Tools ├── RealISRU.ods └── RealISRU.xlsx /GameData/RealISRU/Parts/Assets/FuelCell.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/FuelCell.mu -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/Assets/KA_Analyzer_01.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/KA_Analyzer_01.mu -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/Assets/KA_Drill_Radial_04.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/KA_Drill_Radial_04.mu -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/Assets/KA_Generator_02.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/KA_Generator_02.mu -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/Assets/KarGenny.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/KarGenny.dds -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/Assets/KarGenny_glow.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/KarGenny_glow.dds -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/Assets/KarGenny_norm_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/KarGenny_norm_NRM.dds -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/Assets/Karbonite_Antenna.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/Karbonite_Antenna.dds -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/Assets/Karbonite_Antenna_GLOW.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/Karbonite_Antenna_GLOW.dds -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/Assets/Karbonite_Antenna_norm_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/Karbonite_Antenna_norm_NRM.dds -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/Assets/container.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/container.mu -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/Assets/converter-25-n_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/converter-25-n_NRM.dds -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/Assets/converter-25.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/converter-25.dds -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/Assets/core_pass.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/core_pass.mu -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/Assets/core_tank.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/core_tank.mu -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/Assets/drill-radial-large-n_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/drill-radial-large-n_NRM.dds -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/Assets/drill-radial-large.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/drill-radial-large.dds -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/Assets/elektron.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/elektron.mu -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/Assets/hex_HaberBosch.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/hex_HaberBosch.mu -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/Assets/hex_PSA.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/hex_PSA.mu -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/Assets/hex_sabatier.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/hex_sabatier.mu -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/Assets/realisru_hex_1.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/realisru_hex_1.dds -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/Assets/tank.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/tank.mu -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/Assets/tank_b.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/Assets/tank_b.mu -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/HexAssembly/HaberBosch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/HexAssembly/HaberBosch.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/HexAssembly/PSA.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/HexAssembly/PSA.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/HexAssembly/container.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/HexAssembly/container.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/HexAssembly/core_pass.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/HexAssembly/core_pass.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/HexAssembly/core_tank.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/HexAssembly/core_tank.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/HexAssembly/elektron.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/HexAssembly/elektron.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/HexAssembly/fuelcell.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/HexAssembly/fuelcell.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/HexAssembly/sabatier.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/HexAssembly/sabatier.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/HexAssembly/tank.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/HexAssembly/tank.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/HexAssembly/tank_b.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/HexAssembly/tank_b.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/KA_Analyzer/Analyzer_Copies.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/KA_Analyzer/Analyzer_Copies.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/KA_Analyzer/KA_Analyzer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/KA_Analyzer/KA_Analyzer.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/KA_Drill_Radial_04/KA_Drill_Radial_04.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/KA_Drill_Radial_04/KA_Drill_Radial_04.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/KA_Generator_02/Generator_Copies.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/KA_Generator_02/Generator_Copies.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/KA_Generator_02/KA_Generator_02.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/KA_Generator_02/KA_Generator_02.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/MMParts/000_init.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/MMParts/000_init.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/MMParts/AtmosphericIntake.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/MMParts/AtmosphericIntake.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/MMParts/ComboParts/ComboSabatierElectrolysis.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/MMParts/ComboParts/ComboSabatierElectrolysis.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/MMParts/FFS_Tanks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/MMParts/FFS_Tanks.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/MMParts/IFS_Tanks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/MMParts/IFS_Tanks.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/MMParts/ISRU.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/MMParts/ISRU.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/MMParts/MFT_Tanks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/MMParts/MFT_Tanks.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/MMParts/Mars_ISRU.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/MMParts/Mars_ISRU.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/MMParts/RF_Tanks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/MMParts/RF_Tanks.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/MMParts/Refrigerator.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/MMParts/Refrigerator.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/MMParts/TankSpam.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/MMParts/TankSpam.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/scienceDrill/Texture.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/scienceDrill/Texture.dds -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/scienceDrill/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/scienceDrill/model.mu -------------------------------------------------------------------------------- /GameData/RealISRU/Parts/scienceDrill/part.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Parts/scienceDrill/part.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Resources/Asteroid.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Resources/Asteroid.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Resources/Ceres-Dres.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameData/RealISRU/Resources/Earth-Kerbin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Resources/Earth-Kerbin.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Resources/Mars-Duna.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Resources/Mars-Duna.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Resources/Moon-Mun.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Resources/Moon-Mun.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Resources/ResourceScanner.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Resources/ResourceScanner.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Resources/Titan-Laythe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Resources/Titan-Laythe.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Resources/Venus-Eve.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Resources/Venus-Eve.cfg -------------------------------------------------------------------------------- /GameData/RealISRU/Resources/resources.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/GameData/RealISRU/Resources/resources.cfg -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /RealISRU.komodoproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/RealISRU.komodoproject -------------------------------------------------------------------------------- /RealISRU.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/RealISRU.sln -------------------------------------------------------------------------------- /RealISRU.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/RealISRU.userprefs -------------------------------------------------------------------------------- /RealISRU/ModuleGlobalAtmosphericResourceScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/RealISRU/ModuleGlobalAtmosphericResourceScanner.cs -------------------------------------------------------------------------------- /RealISRU/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/RealISRU/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RealISRU/RealISRU.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/RealISRU/RealISRU.csproj -------------------------------------------------------------------------------- /Ships/VAB/RealISRU Test Craft 10.craft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/Ships/VAB/RealISRU Test Craft 10.craft -------------------------------------------------------------------------------- /Ships/VAB/RealISRU Test Craft 1000.craft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/Ships/VAB/RealISRU Test Craft 1000.craft -------------------------------------------------------------------------------- /Source/RealISRU_hex_FuelCell.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/Source/RealISRU_hex_FuelCell.unity -------------------------------------------------------------------------------- /Source/RealISRU_hex_PSA.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/Source/RealISRU_hex_PSA.unity -------------------------------------------------------------------------------- /Source/RealISRU_hex_core_pass.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/Source/RealISRU_hex_core_pass.unity -------------------------------------------------------------------------------- /Source/RealISRU_hex_core_tank.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/Source/RealISRU_hex_core_tank.unity -------------------------------------------------------------------------------- /Source/RealISRU_tank.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/Source/RealISRU_tank.unity -------------------------------------------------------------------------------- /Source/RealISRU_tank_b.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/Source/RealISRU_tank_b.unity -------------------------------------------------------------------------------- /Source/hex2.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/Source/hex2.blend -------------------------------------------------------------------------------- /Source/hex2_PSA.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/Source/hex2_PSA.blend -------------------------------------------------------------------------------- /Source/hex2_elektron.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/Source/hex2_elektron.blend -------------------------------------------------------------------------------- /Source/hex2_fuel_cell.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/Source/hex2_fuel_cell.blend -------------------------------------------------------------------------------- /Source/hex2_p.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/Source/hex2_p.blend -------------------------------------------------------------------------------- /Source/hex2_tank.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/Source/hex2_tank.blend -------------------------------------------------------------------------------- /Source/hex2_tank_b.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/Source/hex2_tank_b.blend -------------------------------------------------------------------------------- /Source/readme.txt: -------------------------------------------------------------------------------- 1 | blender and unity files here 2 | -------------------------------------------------------------------------------- /Source/realISRU_elektron.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/Source/realISRU_elektron.unity -------------------------------------------------------------------------------- /Tools/RealISRU.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/Tools/RealISRU.ods -------------------------------------------------------------------------------- /Tools/RealISRU.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KSP-RO/RealISRU/HEAD/Tools/RealISRU.xlsx --------------------------------------------------------------------------------