diff options
author | Juan Linietsky <reduzio@gmail.com> | 2017-08-05 17:55:43 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-05 17:55:43 -0300 |
commit | 435bedd9ef58817926bb0e7df9586e1d137b761b (patch) | |
tree | 59d2481db7928cb4b963686c039f1239d35c5686 /scene/2d/node_2d.cpp | |
parent | 52649f10380d64e4d979fffe5f000b3d3609d549 (diff) | |
parent | e82270e8d05dec7d7c679455f30c3ea5d634120c (diff) | |
download | redot-engine-435bedd9ef58817926bb0e7df9586e1d137b761b.tar.gz |
Merge pull request #10116 from neikeq/prop_method_ambiguities
Renames properties and methods to avoid ambiguities
Diffstat (limited to 'scene/2d/node_2d.cpp')
-rw-r--r-- | scene/2d/node_2d.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/2d/node_2d.cpp b/scene/2d/node_2d.cpp index 0acc85681d..82efe1d7fb 100644 --- a/scene/2d/node_2d.cpp +++ b/scene/2d/node_2d.cpp @@ -243,7 +243,7 @@ void Node2D::global_translate(const Vector2 &p_amount) { set_global_position(get_global_position() + p_amount); } -void Node2D::scale(const Size2 &p_amount) { +void Node2D::apply_scale(const Size2 &p_amount) { set_scale(get_scale() * p_amount); } @@ -429,7 +429,7 @@ void Node2D::_bind_methods() { ClassDB::bind_method(D_METHOD("move_local_y", "delta", "scaled"), &Node2D::move_y, DEFVAL(false)); ClassDB::bind_method(D_METHOD("translate", "offset"), &Node2D::translate); ClassDB::bind_method(D_METHOD("global_translate", "offset"), &Node2D::global_translate); - ClassDB::bind_method(D_METHOD("scale", "ratio"), &Node2D::scale); + ClassDB::bind_method(D_METHOD("apply_scale", "ratio"), &Node2D::apply_scale); ClassDB::bind_method(D_METHOD("set_global_position", "pos"), &Node2D::set_global_position); ClassDB::bind_method(D_METHOD("get_global_position"), &Node2D::get_global_position); |