Advertisement
Lithobraker

OR_PlanetShine

Jan 23rd, 2023
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.22 KB | None | 0 0
  1.  
  2. // Color definitions for planets and moons
  3.  
  4. // PLEASE NOTE
  5. // Albedo = the light reflected by a planet/moon
  6.  
  7. // The "name" value is the name of the planet/moon
  8. // It can detect custom ones created by mods too
  9. // ----
  10. // The "color" value is just RGB values, from 0 to 255.
  11. // ----
  12. // The "intensity" value changes the intensity of the albedo effect: 1 is the default value.
  13. // ----
  14. // The "atmosphereAmbient" value changes the intensity of the ambient effect on the low atmosphere.
  15. // ----
  16. // The "groundAmbientOverride" value determines how much of the default ground ambient light
  17. // is overridden by "atmosphereAmbient"
  18. // ----
  19.  
  20. //Config by Lithium-7
  21.  
  22. PlanetshineCelestialBody
  23. {
  24. name = Fracture
  25. color = 255,111,63
  26. intensity = 1
  27. atmosphereAmbient = 1
  28. groundAmbientOverride = 1
  29. }
  30. PlanetshineCelestialBody
  31. {
  32. name = Char
  33. color = 40,40,38
  34. intensity = 1
  35. atmosphereAmbient = 0.2
  36. groundAmbientOverride = 1
  37. }
  38. PlanetshineCelestialBody
  39. {
  40. name = Echo
  41. color = 57,100,122
  42. intensity = 1
  43. atmosphereAmbient = 1
  44. groundAmbientOverride = 1
  45. }
  46. PlanetshineCelestialBody
  47. {
  48. name = Vista
  49. color = 48,48,46
  50. intensity = 1
  51. atmosphereAmbient = 0.2
  52. groundAmbientOverride = 1
  53. }
  54. PlanetshineCelestialBody
  55. {
  56. name = Maar
  57. color = 76,60,36
  58. intensity = 1
  59. atmosphereAmbient = 0.2
  60. groundAmbientOverride = 1
  61. }
  62. PlanetshineCelestialBody
  63. {
  64. name = Windswept
  65. color = 204,180,116
  66. intensity = 1
  67. atmosphereAmbient = 1
  68. groundAmbientOverride = 1
  69. }
  70. PlanetshineCelestialBody
  71. {
  72. name = Tension
  73. color = 37,37,35
  74. intensity = 1
  75. atmosphereAmbient = 0.2
  76. groundAmbientOverride = 1
  77. }
  78. PlanetshineCelestialBody
  79. {
  80. name = Scourge
  81. color = 191,114,118
  82. intensity = 1
  83. atmosphereAmbient = 1
  84. groundAmbientOverride = 1
  85. }
  86. PlanetshineCelestialBody
  87. {
  88. name = Siren
  89. color = 23,23,22
  90. intensity = 1
  91. atmosphereAmbient = 0.2
  92. groundAmbientOverride = 1
  93. }
  94. PlanetshineCelestialBody
  95. {
  96. name = Hydra
  97. color = 16,12,8
  98. intensity = 1
  99. atmosphereAmbient = 0.2
  100. groundAmbientOverride = 1
  101. }
  102. PlanetshineCelestialBody
  103. {
  104. name = Cetus
  105. color = 10,10,10
  106. intensity = 1
  107. atmosphereAmbient = 0.2
  108. groundAmbientOverride = 1
  109. }
  110. PlanetshineCelestialBody
  111. {
  112. name = Kerbin
  113. color = 127,126,126
  114. intensity = 1
  115. atmosphereAmbient = 1
  116. groundAmbientOverride = 1
  117. }
  118. PlanetshineCelestialBody
  119. {
  120. name = Scar
  121. color = 22,18,16
  122. intensity = 1
  123. atmosphereAmbient = 0.2
  124. groundAmbientOverride = 1
  125. }
  126. PlanetshineCelestialBody
  127. {
  128. name = Rage
  129. color = 104,104,101
  130. intensity = 1
  131. atmosphereAmbient = 1
  132. groundAmbientOverride = 1
  133. }
  134. PlanetshineCelestialBody
  135. {
  136. name = Abyss
  137. color = 245,255,186
  138. intensity = 1
  139. atmosphereAmbient = 1
  140. groundAmbientOverride = 1
  141. }
  142. PlanetshineCelestialBody
  143. {
  144. name = Icebound
  145. color = 91,110,114
  146. intensity = 1
  147. atmosphereAmbient = 0.2
  148. groundAmbientOverride = 1
  149. }
  150. PlanetshineCelestialBody
  151. {
  152. name = Silence
  153. color = 74,125,191
  154. intensity = 1
  155. atmosphereAmbient = 1
  156. groundAmbientOverride = 1
  157. }
  158. PlanetshineCelestialBody
  159. {
  160. name = Serenity
  161. color = 232,198,239
  162. intensity = 1
  163. atmosphereAmbient = 1
  164. groundAmbientOverride = 1
  165. }
  166. PlanetshineCelestialBody
  167. {
  168. name = Tranquility
  169. color = 188,227,229
  170. intensity = 1
  171. atmosphereAmbient = 1
  172. groundAmbientOverride = 1
  173. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement