|
@@ -65,7 +65,7 @@ void Node2D::edit_set_state(const Variant &p_state) {
|
|
|
_scale = state[2];
|
|
|
_update_transform();
|
|
|
_change_notify("rotation");
|
|
|
- _change_notify("rotation_deg");
|
|
|
+ _change_notify("rotation_degrees");
|
|
|
_change_notify("scale");
|
|
|
_change_notify("position");
|
|
|
}
|
|
@@ -106,7 +106,7 @@ void Node2D::edit_rotate(float p_rot) {
|
|
|
angle += p_rot;
|
|
|
_update_transform();
|
|
|
_change_notify("rotation");
|
|
|
- _change_notify("rotation_deg");
|
|
|
+ _change_notify("rotation_degrees");
|
|
|
}
|
|
|
|
|
|
void Node2D::_update_xform_values() {
|
|
@@ -147,10 +147,10 @@ void Node2D::set_rotation(float p_radians) {
|
|
|
angle = p_radians;
|
|
|
_update_transform();
|
|
|
_change_notify("rotation");
|
|
|
- _change_notify("rotation_deg");
|
|
|
+ _change_notify("rotation_degrees");
|
|
|
}
|
|
|
|
|
|
-void Node2D::set_rotation_in_degrees(float p_degrees) {
|
|
|
+void Node2D::set_rotation_degrees(float p_degrees) {
|
|
|
|
|
|
set_rotation(Math::deg2rad(p_degrees));
|
|
|
}
|
|
@@ -182,7 +182,7 @@ float Node2D::get_rotation() const {
|
|
|
return angle;
|
|
|
}
|
|
|
|
|
|
-float Node2D::get_rotation_in_degrees() const {
|
|
|
+float Node2D::get_rotation_degrees() const {
|
|
|
|
|
|
return Math::rad2deg(get_rotation());
|
|
|
}
|
|
@@ -287,12 +287,12 @@ void Node2D::set_global_rotation(float p_radians) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-float Node2D::get_global_rotation_in_degrees() const {
|
|
|
+float Node2D::get_global_rotation_degrees() const {
|
|
|
|
|
|
return Math::rad2deg(get_global_rotation());
|
|
|
}
|
|
|
|
|
|
-void Node2D::set_global_rotation_in_degrees(float p_degrees) {
|
|
|
+void Node2D::set_global_rotation_degrees(float p_degrees) {
|
|
|
|
|
|
set_global_rotation(Math::deg2rad(p_degrees));
|
|
|
}
|
|
@@ -400,12 +400,12 @@ void Node2D::_bind_methods() {
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_position", "position"), &Node2D::set_position);
|
|
|
ClassDB::bind_method(D_METHOD("set_rotation", "radians"), &Node2D::set_rotation);
|
|
|
- ClassDB::bind_method(D_METHOD("set_rotation_in_degrees", "degrees"), &Node2D::set_rotation_in_degrees);
|
|
|
+ ClassDB::bind_method(D_METHOD("set_rotation_degrees", "degrees"), &Node2D::set_rotation_degrees);
|
|
|
ClassDB::bind_method(D_METHOD("set_scale", "scale"), &Node2D::set_scale);
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_position"), &Node2D::get_position);
|
|
|
ClassDB::bind_method(D_METHOD("get_rotation"), &Node2D::get_rotation);
|
|
|
- ClassDB::bind_method(D_METHOD("get_rotation_in_degrees"), &Node2D::get_rotation_in_degrees);
|
|
|
+ ClassDB::bind_method(D_METHOD("get_rotation_degrees"), &Node2D::get_rotation_degrees);
|
|
|
ClassDB::bind_method(D_METHOD("get_scale"), &Node2D::get_scale);
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("rotate", "radians"), &Node2D::rotate);
|
|
@@ -419,8 +419,8 @@ void Node2D::_bind_methods() {
|
|
|
ClassDB::bind_method(D_METHOD("get_global_position"), &Node2D::get_global_position);
|
|
|
ClassDB::bind_method(D_METHOD("set_global_rotation", "radians"), &Node2D::set_global_rotation);
|
|
|
ClassDB::bind_method(D_METHOD("get_global_rotation"), &Node2D::get_global_rotation);
|
|
|
- ClassDB::bind_method(D_METHOD("set_global_rotation_in_degrees", "degrees"), &Node2D::set_global_rotation_in_degrees);
|
|
|
- ClassDB::bind_method(D_METHOD("get_global_rotation_in_degrees"), &Node2D::get_global_rotation_in_degrees);
|
|
|
+ ClassDB::bind_method(D_METHOD("set_global_rotation_degrees", "degrees"), &Node2D::set_global_rotation_degrees);
|
|
|
+ ClassDB::bind_method(D_METHOD("get_global_rotation_degrees"), &Node2D::get_global_rotation_degrees);
|
|
|
ClassDB::bind_method(D_METHOD("set_global_scale", "scale"), &Node2D::set_global_scale);
|
|
|
ClassDB::bind_method(D_METHOD("get_global_scale"), &Node2D::get_global_scale);
|
|
|
|
|
@@ -446,13 +446,13 @@ void Node2D::_bind_methods() {
|
|
|
ADD_GROUP("Transform", "");
|
|
|
ADD_PROPERTYNZ(PropertyInfo(Variant::VECTOR2, "position"), "set_position", "get_position");
|
|
|
ADD_PROPERTYNZ(PropertyInfo(Variant::REAL, "rotation", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NOEDITOR), "set_rotation", "get_rotation");
|
|
|
- ADD_PROPERTYNZ(PropertyInfo(Variant::REAL, "rotation_deg", PROPERTY_HINT_RANGE, "-1440,1440,0.1", PROPERTY_USAGE_EDITOR), "set_rotation_in_degrees", "get_rotation_in_degrees");
|
|
|
+ ADD_PROPERTYNZ(PropertyInfo(Variant::REAL, "rotation_degrees", PROPERTY_HINT_RANGE, "-1440,1440,0.1", PROPERTY_USAGE_EDITOR), "set_rotation_degrees", "get_rotation_degrees");
|
|
|
ADD_PROPERTYNO(PropertyInfo(Variant::VECTOR2, "scale"), "set_scale", "get_scale");
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::TRANSFORM2D, "transform", PROPERTY_HINT_NONE, "", 0), "set_transform", "get_transform");
|
|
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::REAL, "global_position", PROPERTY_HINT_NONE, "", 0), "set_global_position", "get_global_position");
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::REAL, "global_rotation", PROPERTY_HINT_NONE, "", 0), "set_global_rotation", "get_global_rotation");
|
|
|
- ADD_PROPERTY(PropertyInfo(Variant::REAL, "global_rotation_deg", PROPERTY_HINT_NONE, "", 0), "set_global_rotation_in_degrees", "get_global_rotation_in_degrees");
|
|
|
+ ADD_PROPERTY(PropertyInfo(Variant::REAL, "global_rotation_degrees", PROPERTY_HINT_NONE, "", 0), "set_global_rotation_degrees", "get_global_rotation_degrees");
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::REAL, "global_scale", PROPERTY_HINT_NONE, "", 0), "set_global_scale", "get_global_scale");
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::TRANSFORM2D, "global_transform", PROPERTY_HINT_NONE, "", 0), "set_global_transform", "get_global_transform");
|
|
|
|