diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-02-12 16:46:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-12 16:46:19 +0100 |
commit | 498805282a61bb8bc29fa81f5bf06678293e6bfc (patch) | |
tree | cc0f8ad966de4f563e07746fbce8d11288f56f66 /editor/plugins | |
parent | 732725d663af0363fe1a0f5d6d662ed3921c3419 (diff) | |
parent | b7b18a494030ed5c92d2ac25b5d29f314a08d103 (diff) |
Merge pull request #57993 from Calinou/sky-tweak-default-values
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/node_3d_editor_plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/node_3d_editor_plugin.cpp b/editor/plugins/node_3d_editor_plugin.cpp index d62bb3814f..3638ab241c 100644 --- a/editor/plugins/node_3d_editor_plugin.cpp +++ b/editor/plugins/node_3d_editor_plugin.cpp @@ -7354,8 +7354,8 @@ void Node3DEditor::_load_default_preview_settings() { sun_angle_altitude->set_value(-Math::rad2deg(sun_rotation.x)); sun_angle_azimuth->set_value(180.0 - Math::rad2deg(sun_rotation.y)); sun_direction->update(); - environ_sky_color->set_pick_color(Color::hex(0x91b2ceff)); - environ_ground_color->set_pick_color(Color::hex(0x1f1f21ff)); + environ_sky_color->set_pick_color(Color(0.385, 0.454, 0.55)); + environ_ground_color->set_pick_color(Color(0.2, 0.169, 0.133)); environ_energy->set_value(1.0); environ_glow_button->set_pressed(true); environ_tonemap_button->set_pressed(true); |