diff options
author | Juan Linietsky <reduzio@gmail.com> | 2018-07-17 08:57:23 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2018-07-17 08:58:04 -0300 |
commit | 13a801430bdc9f8f739b951d5c54a1030795dcb9 (patch) | |
tree | f0ce2ab1ffddb84e4f8d53238ab3b28bc1651190 /scene/2d/node_2d.cpp | |
parent | 95d99cb2acd08748a797a6fb86edcfb7f430bcae (diff) | |
download | redot-engine-13a801430bdc9f8f739b951d5c54a1030795dcb9.tar.gz |
Further fixes to KinematicBody2D API, support for sync motion in moving objects
Diffstat (limited to 'scene/2d/node_2d.cpp')
-rw-r--r-- | scene/2d/node_2d.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scene/2d/node_2d.cpp b/scene/2d/node_2d.cpp index 3813bd96fe..7252602a93 100644 --- a/scene/2d/node_2d.cpp +++ b/scene/2d/node_2d.cpp @@ -130,7 +130,6 @@ void Node2D::_update_xform_values() { void Node2D::_update_transform() { - Transform2D mat(angle, pos); _mat.set_rotation_and_scale(angle, _scale); _mat.elements[2] = pos; |