Merge pull request #21847 from Calinou/light-gizmo-update-inspector

Update Light properties in the inspector when dragging their gizmos
This commit is contained in:
Rémi Verschelde 2018-09-13 16:32:54 +02:00 committed by GitHub
commit 68f224a504
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -48,6 +48,13 @@ void Light::set_param(Param p_param, float p_value) {
if (p_param == PARAM_SPOT_ANGLE || p_param == PARAM_RANGE) {
update_gizmo();
if (p_param == PARAM_SPOT_ANGLE) {
_change_notify("spot_angle");
} else if (p_param == PARAM_RANGE) {
_change_notify("omni_range");
_change_notify("spot_range");
}
}
}