diff options
author | Robert Yevdokimov <robert.yevdokimov@autStand.com> | 2024-01-13 22:49:20 -0500 |
---|---|---|
committer | Robert Yevdokimov <robert.yevdokimov@autStand.com> | 2024-02-12 16:20:08 -0500 |
commit | f2f3f17de851896ce0096876e370dd67076c50ef (patch) | |
tree | 44e6e42a5e8b2394a67210f4a9681ca00dedeeed /editor/plugins/collision_shape_2d_editor_plugin.cpp | |
parent | 26b1fd0d842fa3c2f090ead47e8ea7cd2d6515e1 (diff) | |
download | redot-engine-f2f3f17de851896ce0096876e370dd67076c50ef.tar.gz |
Do not commit transforms and handles if no changes were made
Diffstat (limited to 'editor/plugins/collision_shape_2d_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/collision_shape_2d_editor_plugin.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/editor/plugins/collision_shape_2d_editor_plugin.cpp b/editor/plugins/collision_shape_2d_editor_plugin.cpp index a2feea8488..28913f709b 100644 --- a/editor/plugins/collision_shape_2d_editor_plugin.cpp +++ b/editor/plugins/collision_shape_2d_editor_plugin.cpp @@ -326,6 +326,7 @@ bool CollisionShape2DEditor::forward_canvas_gui_input(const Ref<InputEvent> &p_e return false; } + original_mouse_pos = gpoint; original_point = handles[edit_handle]; original = get_handle_value(edit_handle); original_transform = node->get_global_transform(); @@ -336,7 +337,9 @@ bool CollisionShape2DEditor::forward_canvas_gui_input(const Ref<InputEvent> &p_e } else { if (pressed) { - commit_handle(edit_handle, original); + if (original_mouse_pos != gpoint) { + commit_handle(edit_handle, original); + } edit_handle = -1; pressed = false; |