diff options
author | Juan Linietsky <juan@godotengine.org> | 2019-03-04 15:52:39 -0300 |
---|---|---|
committer | Juan Linietsky <juan@godotengine.org> | 2019-03-04 15:53:18 -0300 |
commit | 53bec9deeb569cd1e3c135fb379a0bf3091f8b83 (patch) | |
tree | 1b12fac9aa18c4f6afa2108b10627d998fc46763 /scene/resources/sky.cpp | |
parent | 0a7de5472f9bf4a5d102ff1bc2f02dbfce27b589 (diff) | |
download | redot-engine-53bec9deeb569cd1e3c135fb379a0bf3091f8b83.tar.gz |
Fix and restore text, material and mesh previewers.
Diffstat (limited to 'scene/resources/sky.cpp')
-rw-r--r-- | scene/resources/sky.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/scene/resources/sky.cpp b/scene/resources/sky.cpp index dfbf619c01..f9f8ff19e4 100644 --- a/scene/resources/sky.cpp +++ b/scene/resources/sky.cpp @@ -536,7 +536,7 @@ void ProceduralSky::_bind_methods() { BIND_ENUM_CONSTANT(TEXTURE_SIZE_MAX); } -ProceduralSky::ProceduralSky() { +ProceduralSky::ProceduralSky(bool p_desaturate) { sky = VS::get_singleton()->sky_create(); texture = VS::get_singleton()->texture_create(); @@ -552,6 +552,12 @@ ProceduralSky::ProceduralSky() { ground_curve = 0.02; ground_energy = 1; + if (p_desaturate) { + sky_top_color.set_hsv(sky_top_color.get_h(),0,sky_top_color.get_v()); + sky_horizon_color.set_hsv(sky_horizon_color.get_h(),0,sky_horizon_color.get_v()); + ground_bottom_color.set_hsv(ground_bottom_color.get_h(),0,ground_bottom_color.get_v()); + ground_horizon_color.set_hsv(ground_horizon_color.get_h(),0,ground_horizon_color.get_v()); + } sun_color = Color(1, 1, 1); sun_latitude = 35; sun_longitude = 0; |