-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: reintroduce distant object planet colors
- Loading branch information
=
committed
Jun 29, 2021
1 parent
004b60a
commit 71664d1
Showing
2 changed files
with
186 additions
and
1 deletion.
There are no files selected for viewing
185 changes: 185 additions & 0 deletions
185
RSSVE/Configs/Misc_Configs/RSSVE_DistantObject_Config.cfg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,185 @@ | ||
|
||
|
||
//--------------------- | ||
//Mercury | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Mercury | ||
color = 128,128,128 | ||
} | ||
//--------------------- | ||
//Venus | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Venus | ||
color = 179,174,155 | ||
} | ||
//--------------------- | ||
//Earth | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Earth | ||
color = 73,99,121 | ||
} | ||
|
||
//Earth | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Kerbin | ||
color = 73,99,121 | ||
} | ||
|
||
//--------------------- | ||
//Moon | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Moon | ||
color = 80,82,81 | ||
} | ||
//--------------------- | ||
//Mars | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Mars | ||
color = 175,132,90 | ||
} | ||
//--------------------- | ||
//Phobos | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Phobos | ||
color = 138,124,115 | ||
} | ||
//--------------------- | ||
//Deimos | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Deimos | ||
color = 163,150,141 | ||
} | ||
//--------------------- | ||
//Vesta | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Vesta | ||
color = 128,128,128 | ||
} | ||
//--------------------- | ||
//Ceres | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Ceres | ||
color = 190,181,172 | ||
} | ||
//--------------------- | ||
//Jupiter | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Jupiter | ||
color = 172,153,139 | ||
} | ||
//--------------------- | ||
//Io | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Io | ||
color = 199,188,73. | ||
} | ||
//--------------------- | ||
//Europa | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Europa | ||
color = 155,144,116 | ||
} | ||
//--------------------- | ||
//Ganymede | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Ganymede | ||
color = 111,104,88 | ||
} | ||
//--------------------- | ||
//Callisto | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Callisto | ||
color = 142,110,89 | ||
} | ||
//--------------------- | ||
//Saturn | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Saturn | ||
color = 188,165,131 | ||
} | ||
//--------------------- | ||
//Enceladus | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Enceladus | ||
color = 128,128,128 | ||
} | ||
//--------------------- | ||
//Titan | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Titan | ||
color = 235,203,80 | ||
} | ||
//--------------------- | ||
//Iapetus | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Iapetus | ||
color = 96,96,96 | ||
} | ||
//--------------------- | ||
//Uranus | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Uranus | ||
color = 169,208,213 | ||
} | ||
//--------------------- | ||
//Miranda | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Miranda | ||
color = 160,160,160 | ||
} | ||
//--------------------- | ||
//Titania | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Titania | ||
color = 176,166,154 | ||
} | ||
//--------------------- | ||
//Neptune | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Neptune | ||
color = 73,118,199 | ||
} | ||
//--------------------- | ||
//Triton | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Triton | ||
color = 112,118,108 | ||
} | ||
//--------------------- | ||
//Pluto | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Pluto | ||
color = 92,56,34 | ||
} | ||
//--------------------- | ||
//Charon | ||
CelestialBodyColor:NEEDS[DistantObject] | ||
{ | ||
name = Charon | ||
color = 65,60,55 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
{ | ||
"MAJOR" : 2, | ||
"MINOR" : 1, | ||
"PATCH" : 3 | ||
"PATCH" : 4 | ||
}, | ||
"KSP_VERSION_MIN" : | ||
{ | ||
|