Make sun energy adjustable as a float in the 3D editor's preview sun

(cherry picked from commit 5e1cb39101)
This commit is contained in:
Manik Sharma 2023-05-04 09:04:49 +05:30 committed by Rémi Verschelde
parent 3be6a1b38e
commit 31a37495f3
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -8545,9 +8545,11 @@ void fragment() {
sun_color->get_popup()->connect("about_to_popup", callable_mp(EditorNode::get_singleton(), &EditorNode::setup_color_picker).bind(sun_color->get_picker()));
sun_energy = memnew(EditorSpinSlider);
sun_energy->set_max(64.0);
sun_energy->set_min(0);
sun_energy->set_step(0.05);
sun_vb->add_margin_child(TTR("Sun Energy"), sun_energy);
sun_energy->connect("value_changed", callable_mp(this, &Node3DEditor::_preview_settings_changed).unbind(1));
sun_energy->set_max(64.0);
sun_max_distance = memnew(EditorSpinSlider);
sun_vb->add_margin_child(TTR("Shadow Max Distance"), sun_max_distance);