diff options
author | groud <gilles.roudiere@gmail.com> | 2018-11-03 19:15:10 +0100 |
---|---|---|
committer | groud <gilles.roudiere@gmail.com> | 2018-11-03 19:15:10 +0100 |
commit | 952f3004f1e1e46a529dc8d8904404832ed5ac96 (patch) | |
tree | e068f311f46dcc7587f2e889a5e2d4aa6f8f839b /editor | |
parent | 121cead38e5ea84ec22139df02eee56d822290b7 (diff) |
Fixes CollisionShape extends not updating when draggind handles
Diffstat (limited to 'editor')
-rw-r--r-- | editor/plugins/collision_shape_2d_editor_plugin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/plugins/collision_shape_2d_editor_plugin.cpp b/editor/plugins/collision_shape_2d_editor_plugin.cpp index 5d85a64b9c..313ba1ee6b 100644 --- a/editor/plugins/collision_shape_2d_editor_plugin.cpp +++ b/editor/plugins/collision_shape_2d_editor_plugin.cpp @@ -203,6 +203,7 @@ void CollisionShape2DEditor::set_handle(int idx, Point2 &p_point) { } break; } + node->get_shape()->_change_notify(); } void CollisionShape2DEditor::commit_handle(int idx, Variant &p_org) { |