├── .gitignore ├── FOR_RELEASE └── GameData │ └── UmbraSpaceIndustries │ └── WarpDrive │ ├── Assets │ ├── Alcubierre.dds │ ├── Alcubierre_GLOW.dds │ ├── Alcubierre_NRM.dds │ ├── FrostedGlass30.dds │ ├── Shared.dds │ ├── Shared_GLOW.dds │ ├── Shared_NRM.dds │ ├── WarpBubble.dds │ ├── WarpBubble.mu │ ├── WarpDrive_250.mu │ ├── WarpDrive_625.mu │ └── ZWarp │ │ ├── Object044VRayCompleteMap.dds │ │ ├── glow.dds │ │ ├── n_normals copy_NRM.dds │ │ └── warp2.mu │ ├── CHANGELOG.txt │ ├── Parts │ ├── WarpDrive_250.cfg │ ├── WarpDrive_625.cfg │ ├── ZWarpDrive125.cfg │ ├── ZWarpDrive25.cfg │ └── ZWarpDrive375.cfg │ ├── Patches │ ├── AdvElectricals.cfg │ ├── CTT.cfg │ ├── ResourceDefs.cfg │ └── ScaledSystems.cfg │ └── WarpDrive.version ├── GPLV3.txt ├── GitVersion.yml ├── Jenkinsfile ├── License.txt ├── README.md └── Source ├── WarpDrive.sln └── WarpEngine ├── ColorUtilities.cs ├── Properties └── AssemblyInfo.cs ├── ShipInfo.cs ├── USI_ModuleWarpEngine.cs └── WarpEngine.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/.gitignore -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/Alcubierre.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/Alcubierre.dds -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/Alcubierre_GLOW.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/Alcubierre_GLOW.dds -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/Alcubierre_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/Alcubierre_NRM.dds -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/FrostedGlass30.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/FrostedGlass30.dds -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/Shared.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/Shared.dds -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/Shared_GLOW.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/Shared_GLOW.dds -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/Shared_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/Shared_NRM.dds -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/WarpBubble.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/WarpBubble.dds -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/WarpBubble.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/WarpBubble.mu -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/WarpDrive_250.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/WarpDrive_250.mu -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/WarpDrive_625.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/WarpDrive_625.mu -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/ZWarp/Object044VRayCompleteMap.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/ZWarp/Object044VRayCompleteMap.dds -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/ZWarp/glow.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/ZWarp/glow.dds -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/ZWarp/n_normals copy_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/ZWarp/n_normals copy_NRM.dds -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/ZWarp/warp2.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Assets/ZWarp/warp2.mu -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/CHANGELOG.txt -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Parts/WarpDrive_250.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Parts/WarpDrive_250.cfg -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Parts/WarpDrive_625.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Parts/WarpDrive_625.cfg -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Parts/ZWarpDrive125.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Parts/ZWarpDrive125.cfg -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Parts/ZWarpDrive25.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Parts/ZWarpDrive25.cfg -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Parts/ZWarpDrive375.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Parts/ZWarpDrive375.cfg -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Patches/AdvElectricals.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Patches/AdvElectricals.cfg -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Patches/CTT.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Patches/CTT.cfg -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Patches/ResourceDefs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Patches/ResourceDefs.cfg -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Patches/ScaledSystems.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/Patches/ScaledSystems.cfg -------------------------------------------------------------------------------- /FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/WarpDrive.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/WarpDrive.version -------------------------------------------------------------------------------- /GPLV3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/GPLV3.txt -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/README.md -------------------------------------------------------------------------------- /Source/WarpDrive.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/Source/WarpDrive.sln -------------------------------------------------------------------------------- /Source/WarpEngine/ColorUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/Source/WarpEngine/ColorUtilities.cs -------------------------------------------------------------------------------- /Source/WarpEngine/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/Source/WarpEngine/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/WarpEngine/ShipInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/Source/WarpEngine/ShipInfo.cs -------------------------------------------------------------------------------- /Source/WarpEngine/USI_ModuleWarpEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/Source/WarpEngine/USI_ModuleWarpEngine.cs -------------------------------------------------------------------------------- /Source/WarpEngine/WarpEngine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmbraSpaceIndustries/WarpDrive/HEAD/Source/WarpEngine/WarpEngine.csproj --------------------------------------------------------------------------------