diff options
author | Gilles Roudiere <gilles.roudiere@gmail.com> | 2017-11-07 08:58:35 +0100 |
---|---|---|
committer | Gilles Roudiere <gilles.roudiere@laas.fr> | 2018-02-16 10:14:52 +0100 |
commit | 8dad41e395220404fb0fdafaa0cd4ed18179231f (patch) | |
tree | 37b9190b77fa989f9d9d369b80957c3890e4164f /scene/2d/node_2d.cpp | |
parent | 68f277477b5a5f3003405e36c6b6853720cb91de (diff) | |
download | redot-engine-8dad41e395220404fb0fdafaa0cd4ed18179231f.tar.gz |
2D editor GUI input rework. Changes are:
- The input handling is done into several distinct functions, and the
code is more consistent.
- The actions' history is more precise ("Edited CanvasItem"
is now "Rotated CanvasItem","Moved CanvasItem",etc...)
- Fixed a little bug about input key events not forwarded correctly to plugins
- IK is followed by default when you move a bone node, the alt-key allow
you to move it normally
Diffstat (limited to 'scene/2d/node_2d.cpp')
-rw-r--r-- | scene/2d/node_2d.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/scene/2d/node_2d.cpp b/scene/2d/node_2d.cpp index 95a1cbfce3..95e24505be 100644 --- a/scene/2d/node_2d.cpp +++ b/scene/2d/node_2d.cpp @@ -46,10 +46,9 @@ Dictionary Node2D::_edit_get_state() const { } void Node2D::_edit_set_state(const Dictionary &p_state) { - Dictionary state = p_state; - pos = state["position"]; - angle = state["rotation"]; - _scale = state["scale"]; + pos = p_state["position"]; + angle = p_state["rotation"]; + _scale = p_state["scale"]; _update_transform(); _change_notify("rotation"); @@ -60,6 +59,8 @@ void Node2D::_edit_set_state(const Dictionary &p_state) { void Node2D::_edit_set_position(const Point2 &p_position) { pos = p_position; + _update_transform(); + _change_notify("position"); } Point2 Node2D::_edit_get_position() const { |