diff options
author | Poommetee Ketson <poommetee@protonmail.com> | 2017-11-11 13:27:02 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-11 13:27:02 +0700 |
commit | aca18b6a4929554bac5936a83a6e5c5fd0419b8f (patch) | |
tree | 3db9e1a48660bc5c91f6bd1826373435d1910b12 /scene/2d/node_2d.h | |
parent | 9bbcc96b706127aef60adfcf08494ac1fde38a00 (diff) | |
parent | 482e07af7e5c8b85463f950036dc7b14cb8cd3b4 (diff) |
Merge pull request #12806 from letheed/unify-degrees
Unify degree methods and properties
Diffstat (limited to 'scene/2d/node_2d.h')
-rw-r--r-- | scene/2d/node_2d.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scene/2d/node_2d.h b/scene/2d/node_2d.h index 8890c829f8..eca1e96c82 100644 --- a/scene/2d/node_2d.h +++ b/scene/2d/node_2d.h @@ -66,7 +66,7 @@ public: void set_position(const Point2 &p_pos); void set_rotation(float p_radians); - void set_rotation_in_degrees(float p_degrees); + void set_rotation_degrees(float p_degrees); void set_scale(const Size2 &p_scale); void rotate(float p_radians); @@ -78,12 +78,12 @@ public: Point2 get_position() const; float get_rotation() const; - float get_rotation_in_degrees() const; + float get_rotation_degrees() const; Size2 get_scale() const; Point2 get_global_position() const; float get_global_rotation() const; - float get_global_rotation_in_degrees() const; + float get_global_rotation_degrees() const; Size2 get_global_scale() const; virtual Rect2 get_item_rect() const; @@ -91,7 +91,7 @@ public: void set_global_transform(const Transform2D &p_transform); void set_global_position(const Point2 &p_pos); void set_global_rotation(float p_radians); - void set_global_rotation_in_degrees(float p_degrees); + void set_global_rotation_degrees(float p_degrees); void set_global_scale(const Size2 &p_scale); void set_z(int p_z); |