├── .gitignore ├── Alternate Planet Color Configs ├── Alternis Kerbol │ └── DistantObejct │ │ └── PlanetColors.cfg ├── PlanetFactory (default) │ └── DistantObject │ │ └── PlanetColors_PF.cfg ├── Real Solar System (default) │ └── DistantObject │ │ └── PlanetColors.cfg └── Real Solar System (metaphor's PlanetFactory config) │ └── DistantObject │ └── PlanetColors.cfg ├── ChangeLog.md ├── DistantObject.csproj ├── DistantObject.sln ├── GameData └── DistantObject │ ├── DistantObject.version │ ├── Flare │ ├── model.mu │ └── model000.dds │ ├── Icons │ ├── toolbar_disabled.png │ ├── toolbar_disabled_38.png │ ├── toolbar_enabled.png │ └── toolbar_enabled_38.png │ ├── PlanetColors.cfg │ └── PluginData │ └── Settings.cfg ├── README.txt ├── SharedAssemblyInfo.cs └── Source-Code ├── DarkenSky.cs ├── FlareDraw.cs ├── SettingsGui.cs ├── ToolbarDOE.cs ├── ToolbarWrapper.cs ├── Utils.cs └── VesselDraw.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/.gitignore -------------------------------------------------------------------------------- /Alternate Planet Color Configs/Alternis Kerbol/DistantObejct/PlanetColors.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/Alternate Planet Color Configs/Alternis Kerbol/DistantObejct/PlanetColors.cfg -------------------------------------------------------------------------------- /Alternate Planet Color Configs/PlanetFactory (default)/DistantObject/PlanetColors_PF.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/Alternate Planet Color Configs/PlanetFactory (default)/DistantObject/PlanetColors_PF.cfg -------------------------------------------------------------------------------- /Alternate Planet Color Configs/Real Solar System (default)/DistantObject/PlanetColors.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/Alternate Planet Color Configs/Real Solar System (default)/DistantObject/PlanetColors.cfg -------------------------------------------------------------------------------- /Alternate Planet Color Configs/Real Solar System (metaphor's PlanetFactory config)/DistantObject/PlanetColors.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/Alternate Planet Color Configs/Real Solar System (metaphor's PlanetFactory config)/DistantObject/PlanetColors.cfg -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /DistantObject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/DistantObject.csproj -------------------------------------------------------------------------------- /DistantObject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/DistantObject.sln -------------------------------------------------------------------------------- /GameData/DistantObject/DistantObject.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/GameData/DistantObject/DistantObject.version -------------------------------------------------------------------------------- /GameData/DistantObject/Flare/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/GameData/DistantObject/Flare/model.mu -------------------------------------------------------------------------------- /GameData/DistantObject/Flare/model000.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/GameData/DistantObject/Flare/model000.dds -------------------------------------------------------------------------------- /GameData/DistantObject/Icons/toolbar_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/GameData/DistantObject/Icons/toolbar_disabled.png -------------------------------------------------------------------------------- /GameData/DistantObject/Icons/toolbar_disabled_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/GameData/DistantObject/Icons/toolbar_disabled_38.png -------------------------------------------------------------------------------- /GameData/DistantObject/Icons/toolbar_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/GameData/DistantObject/Icons/toolbar_enabled.png -------------------------------------------------------------------------------- /GameData/DistantObject/Icons/toolbar_enabled_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/GameData/DistantObject/Icons/toolbar_enabled_38.png -------------------------------------------------------------------------------- /GameData/DistantObject/PlanetColors.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/GameData/DistantObject/PlanetColors.cfg -------------------------------------------------------------------------------- /GameData/DistantObject/PluginData/Settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/GameData/DistantObject/PluginData/Settings.cfg -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/README.txt -------------------------------------------------------------------------------- /SharedAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/SharedAssemblyInfo.cs -------------------------------------------------------------------------------- /Source-Code/DarkenSky.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/Source-Code/DarkenSky.cs -------------------------------------------------------------------------------- /Source-Code/FlareDraw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/Source-Code/FlareDraw.cs -------------------------------------------------------------------------------- /Source-Code/SettingsGui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/Source-Code/SettingsGui.cs -------------------------------------------------------------------------------- /Source-Code/ToolbarDOE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/Source-Code/ToolbarDOE.cs -------------------------------------------------------------------------------- /Source-Code/ToolbarWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/Source-Code/ToolbarWrapper.cs -------------------------------------------------------------------------------- /Source-Code/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/Source-Code/Utils.cs -------------------------------------------------------------------------------- /Source-Code/VesselDraw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOARdV/DistantObject/HEAD/Source-Code/VesselDraw.cs --------------------------------------------------------------------------------