Skip to content

Commit 3d737cb

Browse files
committed
Fix gizmos from 3D editor plugins not applying changes to locked nodes
1 parent 4d1f26e commit 3d737cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editor/scene/3d/node_3d_editor_plugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5216,7 +5216,7 @@ void Node3DEditorViewport::apply_transform(Vector3 p_motion, double p_snap) {
52165216
continue;
52175217
}
52185218

5219-
if (sp->has_meta("_edit_lock_")) {
5219+
if (sp->has_meta("_edit_lock_") && !spatial_editor->is_gizmo_visible()) {
52205220
continue;
52215221
}
52225222

0 commit comments

Comments
 (0)