Merge pull request #70907 from xiongyaohua/fix_path3d_gizmo_not_show

Remove side effect of the `handles` method
This commit is contained in:
Rémi Verschelde 2023-01-05 15:01:29 +01:00
commit 1d14c054a1
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -8670,13 +8670,7 @@ void Node3DEditorPlugin::edit(Object *p_object) {
}
bool Node3DEditorPlugin::handles(Object *p_object) const {
if (p_object->is_class("Node3D")) {
return true;
} else {
// This ensures that gizmos are cleared when selecting a non-Node3D node.
const_cast<Node3DEditorPlugin *>(this)->edit((Object *)nullptr);
return false;
}
return p_object->is_class("Node3D");
}
Dictionary Node3DEditorPlugin::get_state() const {