From da3645d5a93a9a720db058ebe626c87530e26144 Mon Sep 17 00:00:00 2001 From: Robert Yevdokimov <105675984+ryevdokimov@users.noreply.github.com> Date: Sat, 14 Feb 2026 10:32:37 -0500 Subject: [PATCH] Fix silent failure when creating collision shape as sibling of scene root --- editor/scene/3d/mesh_instance_3d_editor_plugin.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/editor/scene/3d/mesh_instance_3d_editor_plugin.cpp b/editor/scene/3d/mesh_instance_3d_editor_plugin.cpp index 4a5374c322..a1efa2a20a 100644 --- a/editor/scene/3d/mesh_instance_3d_editor_plugin.cpp +++ b/editor/scene/3d/mesh_instance_3d_editor_plugin.cpp @@ -365,10 +365,8 @@ void MeshInstance3DEditor::_create_collision_shape() { for (Node *E : selection) { if (placement_option == SHAPE_PLACEMENT_SIBLING && E == get_tree()->get_edited_scene_root()) { - if (verbose) { - err_dialog->set_text(TTR("Can't create a collision shape as sibling for the scene root.")); - err_dialog->popup_centered(); - } + err_dialog->set_text(TTR("Can't create a collision shape as sibling for the scene root.")); + err_dialog->popup_centered(); continue; }