From 2e64f5e452ab5abff5439edac1adfd2d51022b88 Mon Sep 17 00:00:00 2001 From: Liriodendr0n <61613910+Liriodendr0n@users.noreply.github.com> Date: Sun, 22 Mar 2020 14:13:40 -0400 Subject: [PATCH 1/4] Create README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 00000000..71905ece --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# RealSolarSystem +Changes KSP's solar system to make it like the real one. +Forked to add non-constant sunlight intensity From c0ed2de37fe0b804bc7ff7e02e27c6c4169e3d65 Mon Sep 17 00:00:00 2001 From: Liriodendr0n <61613910+Liriodendr0n@users.noreply.github.com> Date: Sun, 22 Mar 2020 14:19:55 -0400 Subject: [PATCH 2/4] Add intensity curves --- .../RealSolarSystem/RSSKopernicus/Sun.cfg | 68 ++++++++++++++++++- 1 file changed, 67 insertions(+), 1 deletion(-) diff --git a/GameData/RealSolarSystem/RSSKopernicus/Sun.cfg b/GameData/RealSolarSystem/RSSKopernicus/Sun.cfg index 5909b359..d1341459 100644 --- a/GameData/RealSolarSystem/RSSKopernicus/Sun.cfg +++ b/GameData/RealSolarSystem/RSSKopernicus/Sun.cfg @@ -23,7 +23,73 @@ } ScaledVersion { - solarLightColor = 1.0,1.0,1.0,1.0 + type = Star + Light + { + sunLightColor = 1.0, 1.0, 1.0, 1.0 + + sunlightShadowStrength = 0.8 + scaledSunlightColor = 1.0, 1.0, 1.0, 1.0 + + IVASunColor = 1.0, 1.0, 1.0, 1.0 + + ambientLightColor = 1.0, 1.0, 1.0, 1.0 + sunLensFlareColor = 1.0, 1.0, 1.0, 1.0 + givesOffLight = true + sunAU = 149597870700 + + insolation = 0.2 + + IntensityCurve + { + key = 7.48E+8 9.256 -5.19E-9 -5.19E-9 + key = 3.00E+9 5.171 -7.26E-10 -7.26E-10 + key = 1.50E+10 2.630 -7.39E-11 -7.39E-11 + key = 5.83E+10 1.485 -1.07E-11 -1.07E-11 + key = 1.07E+11 1.148 -4.48E-12 -4.48E-12 + key = 1.50E+11 1.000 -2.80E-12 -2.80E-12 + key = 2.27E+11 0.839 -1.55E-12 -1.55E-12 + key = 7.78E+11 0.500 -2.70E-13 -2.70E-13 + key = 1.44E+12 0.387 -1.13E-13 -1.13E-13 + key = 2.82E+12 0.290 -4.29E-14 -4.29E-14 + key = 4.49E+12 0.240 -2.24E-14 -2.24E-14 + key = 1.50E+13 0.145 -4.06E-15 -4.06E-15 + key = 7.18E+13 0.075 -4.38E-16 -4.38E-16 + } + ScaledIntensityCurve + { + key = 1.24E+5 9.256 -3.12E-5 -3.12E-5 + key = 4.99E+5 5.171 -4.36E-6 -4.36E-6 + key = 2.49E+6 2.630 -4.43E-7 -4.43E-7 + key = 9.73E+6 1.485 -6.42E-8 -6.42E-8 + key = 1.80E+7 1.148 -2.69E-8 -2.69E-8 + key = 2.50E+7 1.000 -1.69E-8 -1.69E-8 + key = 3.79E+7 0.839 -9.30E-9 -9.30E-9 + key = 1.30E+8 0.500 -1.62E-9 -1.62E-9 + key = 2.39E+8 0.387 -6.79E-10 -6.79E-10 + key = 4.74E+8 0.290 -2.57E-10 -2.57E-10 + key = 7.48E+8 0.240 -1.35E-10 -1.35E-10 + key = 2.49E+9 0.145 -2.44E-11 -2.44E-11 + key = 1.20E+10 0.075 -2.63E-12 -2.63E-12 + + } + IVAIntensityCurve + { + key = 7.48E+8 9.256 -5.19E-9 -5.19E-9 + key = 3.00E+9 5.171 -7.26E-10 -7.26E-10 + key = 1.50E+10 2.630 -7.39E-11 -7.39E-11 + key = 5.83E+10 1.485 -1.07E-11 -1.07E-11 + key = 1.07E+11 1.148 -4.48E-12 -4.48E-12 + key = 1.50E+11 1.000 -2.80E-12 -2.80E-12 + key = 2.27E+11 0.839 -1.55E-12 -1.55E-12 + key = 7.78E+11 0.500 -2.70E-13 -2.70E-13 + key = 1.44E+12 0.387 -1.13E-13 -1.13E-13 + key = 2.82E+12 0.290 -4.29E-14 -4.29E-14 + key = 4.49E+12 0.240 -2.24E-14 -2.24E-14 + key = 1.50E+13 0.145 -4.06E-15 -4.06E-15 + key = 7.18E+13 0.075 -4.38E-16 -4.38E-16 + } + } } } } From 8cb2064847aeb646136351450fc467b6ad6919da Mon Sep 17 00:00:00 2001 From: Liriodendr0n <61613910+Liriodendr0n@users.noreply.github.com> Date: Sun, 22 Mar 2020 14:21:44 -0400 Subject: [PATCH 3/4] delete accidentally added README.md --- README.md | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 README.md diff --git a/README.md b/README.md deleted file mode 100644 index 71905ece..00000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# RealSolarSystem -Changes KSP's solar system to make it like the real one. -Forked to add non-constant sunlight intensity From 7a1c5319c76d475739df0e985e2d2dcdba34e663 Mon Sep 17 00:00:00 2001 From: Liriodendr0n <61613910+Liriodendr0n@users.noreply.github.com> Date: Sun, 22 Mar 2020 15:21:52 -0400 Subject: [PATCH 4/4] Dimmed Rings --- GameData/RealSolarSystem/RSSKopernicus/Saturn/Saturn.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GameData/RealSolarSystem/RSSKopernicus/Saturn/Saturn.cfg b/GameData/RealSolarSystem/RSSKopernicus/Saturn/Saturn.cfg index 252aa139..ecad2381 100644 --- a/GameData/RealSolarSystem/RSSKopernicus/Saturn/Saturn.cfg +++ b/GameData/RealSolarSystem/RSSKopernicus/Saturn/Saturn.cfg @@ -110,7 +110,7 @@ outerRadius = 2500 innerRadius = 1250 texture = RSS-Textures/PluginData/SaturnRing.dds - color = 1,1,1,1 + color = 0.387,0.387,0.387,1 lockRotation = false unlit = true }