summaryrefslogtreecommitdiff
path: root/scene/resources
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2018-08-07 15:35:04 -0300
committerGitHub <noreply@github.com>2018-08-07 15:35:04 -0300
commit9bd5315d30be8cb162bd7fee6a7db17f65b5057d (patch)
treea9e743b26e3ba8b4e8d6ced50ca6397dcb020735 /scene/resources
parent14fd797c536a675c94c36a2b2b924ce0295f5d64 (diff)
parent8af2047966482baaaf6212dc4056938aa1f7ffa6 (diff)
Merge pull request #20786 from groud/skybox_default_change
Changes the default skybox to avoid the blue shade
Diffstat (limited to 'scene/resources')
-rw-r--r--scene/resources/sky_box.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/scene/resources/sky_box.cpp b/scene/resources/sky_box.cpp
index 414d56ac61..4176aed4d8 100644
--- a/scene/resources/sky_box.cpp
+++ b/scene/resources/sky_box.cpp
@@ -532,14 +532,14 @@ ProceduralSky::ProceduralSky() {
texture = VS::get_singleton()->texture_create();
update_queued = false;
- sky_top_color = Color::hex(0x0c74f9ff);
- sky_horizon_color = Color::hex(0x8ed2e8ff);
- sky_curve = 0.25;
+ sky_top_color = Color::hex(0xa5d6f1ff);
+ sky_horizon_color = Color::hex(0xd6eafaff);
+ sky_curve = 0.09;
sky_energy = 1;
- ground_bottom_color = Color::hex(0x1a2530ff);
- ground_horizon_color = Color::hex(0x7bc9f3ff);
- ground_curve = 0.01;
+ ground_bottom_color = Color::hex(0x282f36ff);
+ ground_horizon_color = Color::hex(0x6c655fff);
+ ground_curve = 0.02;
ground_energy = 1;
sun_color = Color(1, 1, 1);