diff options
Diffstat (limited to 'scene/3d')
-rw-r--r-- | scene/3d/proximity_group.cpp | 2 | ||||
-rw-r--r-- | scene/3d/spatial.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scene/3d/proximity_group.cpp b/scene/3d/proximity_group.cpp index 5ef0d3f176..9f4b5c7a03 100644 --- a/scene/3d/proximity_group.cpp +++ b/scene/3d/proximity_group.cpp @@ -135,7 +135,7 @@ void ProximityGroup::broadcast(String p_name, Variant p_params) { E = groups.front(); while (E) { - get_tree()->call_group(SceneTree::GROUP_CALL_DEFAULT, E->key(), "_proximity_group_broadcast", p_name, p_params); + get_tree()->call_group_flags(SceneTree::GROUP_CALL_DEFAULT, E->key(), "_proximity_group_broadcast", p_name, p_params); E = E->next(); }; diff --git a/scene/3d/spatial.cpp b/scene/3d/spatial.cpp index 7c452f90af..788ef7f935 100644 --- a/scene/3d/spatial.cpp +++ b/scene/3d/spatial.cpp @@ -180,7 +180,7 @@ void Spatial::_notification(int p_what) { if (get_tree()->is_editor_hint()) { // get_scene()->call_group(SceneMainLoop::GROUP_CALL_REALTIME,SceneStringNames::get_singleton()->_spatial_editor_group,SceneStringNames::get_singleton()->_request_gizmo,this); - get_tree()->call_group(0,SceneStringNames::get_singleton()->_spatial_editor_group,SceneStringNames::get_singleton()->_request_gizmo,this); + get_tree()->call_group_flags(0,SceneStringNames::get_singleton()->_spatial_editor_group,SceneStringNames::get_singleton()->_request_gizmo,this); if (!data.gizmo_disabled) { if (data.gizmo.is_valid()) |