| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  node_2d.cpp                                                          */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2022-01-03 21:27:34 +01:00
										 |  |  | /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md).   */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "node_2d.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-01 21:18:16 +02:00
										 |  |  | #include "scene/main/viewport.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-21 23:37:07 +02:00
										 |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							| 
									
										
										
										
											2017-11-15 23:03:25 +01:00
										 |  |  | Dictionary Node2D::_edit_get_state() const { | 
					
						
							|  |  |  | 	Dictionary state; | 
					
						
							|  |  |  | 	state["position"] = get_position(); | 
					
						
							|  |  |  | 	state["rotation"] = get_rotation(); | 
					
						
							|  |  |  | 	state["scale"] = get_scale(); | 
					
						
							| 
									
										
										
										
											2020-05-01 13:38:04 -03:00
										 |  |  | 	state["skew"] = get_skew(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return state; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-10-21 23:37:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-15 23:03:25 +01:00
										 |  |  | void Node2D::_edit_set_state(const Dictionary &p_state) { | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 	position = p_state["position"]; | 
					
						
							|  |  |  | 	rotation = p_state["rotation"]; | 
					
						
							|  |  |  | 	scale = p_state["scale"]; | 
					
						
							| 
									
										
										
										
											2020-05-01 13:38:04 -03:00
										 |  |  | 	skew = p_state["skew"]; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	_update_transform(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-15 23:03:25 +01:00
										 |  |  | void Node2D::_edit_set_position(const Point2 &p_position) { | 
					
						
							| 
									
										
										
										
											2018-03-08 21:35:41 +01:00
										 |  |  | 	set_position(p_position); | 
					
						
							| 
									
										
										
										
											2017-11-15 23:03:25 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Point2 Node2D::_edit_get_position() const { | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 	return position; | 
					
						
							| 
									
										
										
										
											2017-11-15 23:03:25 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-08 21:35:41 +01:00
										 |  |  | void Node2D::_edit_set_scale(const Size2 &p_scale) { | 
					
						
							|  |  |  | 	set_scale(p_scale); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Size2 Node2D::_edit_get_scale() const { | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 	return scale; | 
					
						
							| 
									
										
										
										
											2018-03-08 21:35:41 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-29 23:10:32 -05:00
										 |  |  | void Node2D::_edit_set_rotation(real_t p_rotation) { | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 	rotation = p_rotation; | 
					
						
							| 
									
										
										
										
											2018-03-08 21:35:41 +01:00
										 |  |  | 	_update_transform(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-29 23:10:32 -05:00
										 |  |  | real_t Node2D::_edit_get_rotation() const { | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 	return rotation; | 
					
						
							| 
									
										
										
										
											2018-03-08 21:35:41 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool Node2D::_edit_use_rotation() const { | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-15 23:03:25 +01:00
										 |  |  | void Node2D::_edit_set_rect(const Rect2 &p_edit_rect) { | 
					
						
							| 
									
										
										
										
											2018-03-08 21:35:41 +01:00
										 |  |  | 	ERR_FAIL_COND(!_edit_use_rect()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-15 23:03:25 +01:00
										 |  |  | 	Rect2 r = _edit_get_rect(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Vector2 zero_offset; | 
					
						
							|  |  |  | 	Size2 new_scale(1, 1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (r.size.x != 0) { | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 		zero_offset.x = -r.position.x / r.size.x; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		new_scale.x = p_edit_rect.size.x / r.size.x; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (r.size.y != 0) { | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 		zero_offset.y = -r.position.y / r.size.y; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		new_scale.y = p_edit_rect.size.y / r.size.y; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-08 21:35:41 +01:00
										 |  |  | 	Point2 new_pos = p_edit_rect.position + p_edit_rect.size * zero_offset; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 	Transform2D postxf; | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 	postxf.set_rotation_scale_and_skew(rotation, scale, skew); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	new_pos = postxf.xform(new_pos); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 	position += new_pos; | 
					
						
							|  |  |  | 	scale *= new_scale; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	_update_transform(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-10-21 23:37:07 +02:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | void Node2D::_update_xform_values() { | 
					
						
							| 
									
										
										
										
											2022-04-24 16:59:24 -05:00
										 |  |  | 	position = transform.columns[2]; | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 	rotation = transform.get_rotation(); | 
					
						
							|  |  |  | 	scale = transform.get_scale(); | 
					
						
							|  |  |  | 	skew = transform.get_skew(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	_xform_dirty = false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Node2D::_update_transform() { | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 	transform.set_rotation_scale_and_skew(rotation, scale, skew); | 
					
						
							| 
									
										
										
										
											2022-04-24 16:59:24 -05:00
										 |  |  | 	transform.columns[2] = position; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 	RenderingServer::get_singleton()->canvas_item_set_transform(get_canvas_item(), transform); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!is_inside_tree()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	_notify_transform(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-04 01:16:14 -03:00
										 |  |  | void Node2D::set_position(const Point2 &p_pos) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (_xform_dirty) { | 
					
						
							| 
									
										
										
										
											2022-04-05 13:40:26 +03:00
										 |  |  | 		const_cast<Node2D *>(this)->_update_xform_values(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 	position = p_pos; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	_update_transform(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-29 23:10:32 -05:00
										 |  |  | void Node2D::set_rotation(real_t p_radians) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (_xform_dirty) { | 
					
						
							| 
									
										
										
										
											2022-04-05 13:40:26 +03:00
										 |  |  | 		const_cast<Node2D *>(this)->_update_xform_values(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 	rotation = p_radians; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	_update_transform(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-18 16:58:19 +01:00
										 |  |  | void Node2D::set_rotation_degrees(real_t p_degrees) { | 
					
						
							|  |  |  | 	set_rotation(Math::deg_to_rad(p_degrees)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-29 23:10:32 -05:00
										 |  |  | void Node2D::set_skew(real_t p_radians) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (_xform_dirty) { | 
					
						
							| 
									
										
										
										
											2022-04-05 13:40:26 +03:00
										 |  |  | 		const_cast<Node2D *>(this)->_update_xform_values(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-05-01 13:38:04 -03:00
										 |  |  | 	skew = p_radians; | 
					
						
							|  |  |  | 	_update_transform(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void Node2D::set_scale(const Size2 &p_scale) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (_xform_dirty) { | 
					
						
							| 
									
										
										
										
											2022-04-05 13:40:26 +03:00
										 |  |  | 		const_cast<Node2D *>(this)->_update_xform_values(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 	scale = p_scale; | 
					
						
							| 
									
										
										
										
											2020-01-13 12:13:45 +01:00
										 |  |  | 	// Avoid having 0 scale values, can lead to errors in physics and rendering.
 | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 	if (Math::is_zero_approx(scale.x)) { | 
					
						
							|  |  |  | 		scale.x = CMP_EPSILON; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 	if (Math::is_zero_approx(scale.y)) { | 
					
						
							|  |  |  | 		scale.y = CMP_EPSILON; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	_update_transform(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-04 01:16:14 -03:00
										 |  |  | Point2 Node2D::get_position() const { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (_xform_dirty) { | 
					
						
							| 
									
										
										
										
											2022-04-05 13:40:26 +03:00
										 |  |  | 		const_cast<Node2D *>(this)->_update_xform_values(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 	return position; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-11-10 09:03:15 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-29 23:10:32 -05:00
										 |  |  | real_t Node2D::get_rotation() const { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (_xform_dirty) { | 
					
						
							| 
									
										
										
										
											2022-04-05 13:40:26 +03:00
										 |  |  | 		const_cast<Node2D *>(this)->_update_xform_values(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 	return rotation; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-11-10 09:03:15 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-18 16:58:19 +01:00
										 |  |  | real_t Node2D::get_rotation_degrees() const { | 
					
						
							|  |  |  | 	return Math::rad_to_deg(get_rotation()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-29 23:10:32 -05:00
										 |  |  | real_t Node2D::get_skew() const { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (_xform_dirty) { | 
					
						
							| 
									
										
										
										
											2022-04-05 13:40:26 +03:00
										 |  |  | 		const_cast<Node2D *>(this)->_update_xform_values(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-05-01 13:38:04 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return skew; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-06 23:38:08 +02:00
										 |  |  | Size2 Node2D::get_scale() const { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (_xform_dirty) { | 
					
						
							| 
									
										
										
										
											2022-04-05 13:40:26 +03:00
										 |  |  | 		const_cast<Node2D *>(this)->_update_xform_values(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 	return scale; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | Transform2D Node2D::get_transform() const { | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 	return transform; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-29 23:10:32 -05:00
										 |  |  | void Node2D::rotate(real_t p_radians) { | 
					
						
							| 
									
										
										
										
											2017-01-04 01:16:14 -03:00
										 |  |  | 	set_rotation(get_rotation() + p_radians); | 
					
						
							| 
									
										
										
										
											2014-05-14 01:22:15 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-22 10:33:58 -03:00
										 |  |  | void Node2D::translate(const Vector2 &p_amount) { | 
					
						
							| 
									
										
										
										
											2017-01-04 01:16:14 -03:00
										 |  |  | 	set_position(get_position() + p_amount); | 
					
						
							| 
									
										
										
										
											2015-03-22 10:33:58 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Node2D::global_translate(const Vector2 &p_amount) { | 
					
						
							| 
									
										
										
										
											2017-01-04 01:16:14 -03:00
										 |  |  | 	set_global_position(get_global_position() + p_amount); | 
					
						
							| 
									
										
										
										
											2015-03-22 10:33:58 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-05 22:52:58 +02:00
										 |  |  | void Node2D::apply_scale(const Size2 &p_amount) { | 
					
						
							| 
									
										
										
										
											2015-03-22 10:33:58 -03:00
										 |  |  | 	set_scale(get_scale() * p_amount); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-29 23:10:32 -05:00
										 |  |  | void Node2D::move_x(real_t p_delta, bool p_scaled) { | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 	Transform2D t = get_transform(); | 
					
						
							| 
									
										
										
										
											2014-05-14 01:22:15 -03:00
										 |  |  | 	Vector2 m = t[0]; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!p_scaled) { | 
					
						
							| 
									
										
										
										
											2014-05-14 01:22:15 -03:00
										 |  |  | 		m.normalize(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-04 01:16:14 -03:00
										 |  |  | 	set_position(t[2] + m * p_delta); | 
					
						
							| 
									
										
										
										
											2014-05-14 01:22:15 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-29 23:10:32 -05:00
										 |  |  | void Node2D::move_y(real_t p_delta, bool p_scaled) { | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 	Transform2D t = get_transform(); | 
					
						
							| 
									
										
										
										
											2014-05-14 01:22:15 -03:00
										 |  |  | 	Vector2 m = t[1]; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!p_scaled) { | 
					
						
							| 
									
										
										
										
											2014-05-14 01:22:15 -03:00
										 |  |  | 		m.normalize(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-04 01:16:14 -03:00
										 |  |  | 	set_position(t[2] + m * p_delta); | 
					
						
							| 
									
										
										
										
											2014-05-14 01:22:15 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-04 01:16:14 -03:00
										 |  |  | Point2 Node2D::get_global_position() const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return get_global_transform().get_origin(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-04 01:16:14 -03:00
										 |  |  | void Node2D::set_global_position(const Point2 &p_pos) { | 
					
						
							| 
									
										
										
										
											2021-08-12 19:48:34 +02:00
										 |  |  | 	CanvasItem *parent = get_parent_item(); | 
					
						
							|  |  |  | 	if (parent) { | 
					
						
							|  |  |  | 		Transform2D inv = parent->get_global_transform().affine_inverse(); | 
					
						
							| 
									
										
										
										
											2017-01-04 01:16:14 -03:00
										 |  |  | 		set_position(inv.xform(p_pos)); | 
					
						
							| 
									
										
										
										
											2014-07-01 22:07:04 +08:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2017-01-04 01:16:14 -03:00
										 |  |  | 		set_position(p_pos); | 
					
						
							| 
									
										
										
										
											2014-07-01 22:07:04 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-29 23:10:32 -05:00
										 |  |  | real_t Node2D::get_global_rotation() const { | 
					
						
							| 
									
										
										
										
											2016-08-15 11:39:19 +02:00
										 |  |  | 	return get_global_transform().get_rotation(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-18 16:58:19 +01:00
										 |  |  | real_t Node2D::get_global_rotation_degrees() const { | 
					
						
							|  |  |  | 	return Math::rad_to_deg(get_global_rotation()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-12 19:48:34 +02:00
										 |  |  | real_t Node2D::get_global_skew() const { | 
					
						
							|  |  |  | 	return get_global_transform().get_skew(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Node2D::set_global_rotation(const real_t p_radians) { | 
					
						
							|  |  |  | 	CanvasItem *parent = get_parent_item(); | 
					
						
							|  |  |  | 	if (parent) { | 
					
						
							|  |  |  | 		Transform2D parent_global_transform = parent->get_global_transform(); | 
					
						
							|  |  |  | 		Transform2D new_transform = parent_global_transform * get_transform(); | 
					
						
							|  |  |  | 		new_transform.set_rotation(p_radians); | 
					
						
							|  |  |  | 		new_transform = parent_global_transform.affine_inverse() * new_transform; | 
					
						
							|  |  |  | 		set_rotation(new_transform.get_rotation()); | 
					
						
							| 
									
										
										
										
											2016-08-15 11:39:19 +02:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2017-01-04 01:16:14 -03:00
										 |  |  | 		set_rotation(p_radians); | 
					
						
							| 
									
										
										
										
											2016-08-15 11:39:19 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-18 16:58:19 +01:00
										 |  |  | void Node2D::set_global_rotation_degrees(const real_t p_degrees) { | 
					
						
							|  |  |  | 	set_global_rotation(Math::deg_to_rad(p_degrees)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-12 19:48:34 +02:00
										 |  |  | void Node2D::set_global_skew(const real_t p_radians) { | 
					
						
							|  |  |  | 	CanvasItem *parent = get_parent_item(); | 
					
						
							|  |  |  | 	if (parent) { | 
					
						
							|  |  |  | 		Transform2D parent_global_transform = parent->get_global_transform(); | 
					
						
							|  |  |  | 		Transform2D new_transform = parent_global_transform * get_transform(); | 
					
						
							|  |  |  | 		new_transform.set_skew(p_radians); | 
					
						
							|  |  |  | 		new_transform = parent_global_transform.affine_inverse() * new_transform; | 
					
						
							|  |  |  | 		set_skew(new_transform.get_skew()); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		set_skew(p_radians); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-15 11:39:19 +02:00
										 |  |  | Size2 Node2D::get_global_scale() const { | 
					
						
							|  |  |  | 	return get_global_transform().get_scale(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Node2D::set_global_scale(const Size2 &p_scale) { | 
					
						
							| 
									
										
										
										
											2021-08-12 19:48:34 +02:00
										 |  |  | 	CanvasItem *parent = get_parent_item(); | 
					
						
							|  |  |  | 	if (parent) { | 
					
						
							|  |  |  | 		Transform2D parent_global_transform = parent->get_global_transform(); | 
					
						
							|  |  |  | 		Transform2D new_transform = parent_global_transform * get_transform(); | 
					
						
							|  |  |  | 		new_transform.set_scale(p_scale); | 
					
						
							|  |  |  | 		new_transform = parent_global_transform.affine_inverse() * new_transform; | 
					
						
							|  |  |  | 		set_scale(new_transform.get_scale()); | 
					
						
							| 
									
										
										
										
											2016-08-15 11:39:19 +02:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		set_scale(p_scale); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | void Node2D::set_transform(const Transform2D &p_transform) { | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 	transform = p_transform; | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 	_xform_dirty = true; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-24 12:24:30 +05:45
										 |  |  | 	RenderingServer::get_singleton()->canvas_item_set_transform(get_canvas_item(), transform); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!is_inside_tree()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	_notify_transform(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | void Node2D::set_global_transform(const Transform2D &p_transform) { | 
					
						
							| 
									
										
										
										
											2021-08-12 19:48:34 +02:00
										 |  |  | 	CanvasItem *parent = get_parent_item(); | 
					
						
							|  |  |  | 	if (parent) { | 
					
						
							|  |  |  | 		set_transform(parent->get_global_transform().affine_inverse() * p_transform); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		set_transform(p_transform); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | Transform2D Node2D::get_relative_transform_to_parent(const Node *p_parent) const { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (p_parent == this) { | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 		return Transform2D(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-02-14 12:09:52 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 22:58:51 +02:00
										 |  |  | 	Node2D *parent_2d = Object::cast_to<Node2D>(get_parent()); | 
					
						
							| 
									
										
										
										
											2015-12-28 21:05:57 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 	ERR_FAIL_COND_V(!parent_2d, Transform2D()); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (p_parent == parent_2d) { | 
					
						
							| 
									
										
										
										
											2015-02-14 12:09:52 -03:00
										 |  |  | 		return get_transform(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2015-12-28 21:05:57 -03:00
										 |  |  | 		return parent_2d->get_relative_transform_to_parent(p_parent) * get_transform(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-02-14 12:09:52 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-01-10 17:35:26 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-12 08:17:09 -03:00
										 |  |  | void Node2D::look_at(const Vector2 &p_pos) { | 
					
						
							|  |  |  | 	rotate(get_angle_to(p_pos)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-29 23:10:32 -05:00
										 |  |  | real_t Node2D::get_angle_to(const Vector2 &p_pos) const { | 
					
						
							| 
									
										
										
										
											2019-01-30 19:14:43 +01:00
										 |  |  | 	return (to_local(p_pos) * get_scale()).angle(); | 
					
						
							| 
									
										
										
										
											2015-05-12 08:17:09 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 14:37:26 +03:00
										 |  |  | Point2 Node2D::to_local(Point2 p_global) const { | 
					
						
							|  |  |  | 	return get_global_transform().affine_inverse().xform(p_global); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Point2 Node2D::to_global(Point2 p_local) const { | 
					
						
							|  |  |  | 	return get_global_transform().xform(p_local); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-01 21:18:16 +02:00
										 |  |  | void Node2D::_notification(int p_notification) { | 
					
						
							|  |  |  | 	switch (p_notification) { | 
					
						
							|  |  |  | 		case NOTIFICATION_MOVED_IN_PARENT: { | 
					
						
							|  |  |  | 			if (get_viewport()) { | 
					
						
							|  |  |  | 				get_viewport()->gui_set_root_order_dirty(); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void Node2D::_bind_methods() { | 
					
						
							| 
									
										
										
										
											2017-09-10 15:37:49 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_position", "position"), &Node2D::set_position); | 
					
						
							| 
									
										
										
										
											2017-02-13 12:47:24 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_rotation", "radians"), &Node2D::set_rotation); | 
					
						
							| 
									
										
										
										
											2022-12-18 16:58:19 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_rotation_degrees", "degrees"), &Node2D::set_rotation_degrees); | 
					
						
							| 
									
										
										
										
											2020-05-01 13:38:04 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_skew", "radians"), &Node2D::set_skew); | 
					
						
							| 
									
										
										
										
											2017-02-13 12:47:24 +01:00
										 |  |  | 	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); | 
					
						
							| 
									
										
										
										
											2022-12-18 16:58:19 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_rotation_degrees"), &Node2D::get_rotation_degrees); | 
					
						
							| 
									
										
										
										
											2020-05-01 13:38:04 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_skew"), &Node2D::get_skew); | 
					
						
							| 
									
										
										
										
											2017-02-13 12:47:24 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_scale"), &Node2D::get_scale); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("rotate", "radians"), &Node2D::rotate); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("move_local_x", "delta", "scaled"), &Node2D::move_x, DEFVAL(false)); | 
					
						
							|  |  |  | 	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); | 
					
						
							| 
									
										
										
										
											2017-08-05 22:52:58 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("apply_scale", "ratio"), &Node2D::apply_scale); | 
					
						
							| 
									
										
										
										
											2017-02-13 12:47:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-10 15:37:49 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_global_position", "position"), &Node2D::set_global_position); | 
					
						
							| 
									
										
										
										
											2017-02-13 12:47:24 +01:00
										 |  |  | 	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); | 
					
						
							| 
									
										
										
										
											2022-12-18 16:58:19 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_global_rotation_degrees", "degrees"), &Node2D::set_global_rotation_degrees); | 
					
						
							| 
									
										
										
										
											2017-02-13 12:47:24 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_global_rotation"), &Node2D::get_global_rotation); | 
					
						
							| 
									
										
										
										
											2022-12-18 16:58:19 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_global_rotation_degrees"), &Node2D::get_global_rotation_degrees); | 
					
						
							| 
									
										
										
										
											2021-08-12 19:48:34 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_global_skew", "radians"), &Node2D::set_global_skew); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_global_skew"), &Node2D::get_global_skew); | 
					
						
							| 
									
										
										
										
											2017-02-13 12:47:24 +01:00
										 |  |  | 	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); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_transform", "xform"), &Node2D::set_transform); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_global_transform", "xform"), &Node2D::set_global_transform); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("look_at", "point"), &Node2D::look_at); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_angle_to", "point"), &Node2D::get_angle_to); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 14:37:26 +03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("to_local", "global_point"), &Node2D::to_local); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("to_global", "local_point"), &Node2D::to_global); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-09 13:19:41 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_relative_transform_to_parent", "parent"), &Node2D::get_relative_transform_to_parent); | 
					
						
							| 
									
										
										
										
											2017-01-04 01:16:14 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ADD_GROUP("Transform", ""); | 
					
						
							| 
									
										
										
										
											2022-10-03 11:59:33 -05:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "position", PROPERTY_HINT_RANGE, "-99999,99999,0.001,or_less,or_greater,hide_slider,suffix:px"), "set_position", "get_position"); | 
					
						
							| 
									
										
										
										
											2022-03-27 19:16:03 +02:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "rotation", PROPERTY_HINT_RANGE, "-360,360,0.1,or_less,or_greater,radians"), "set_rotation", "get_rotation"); | 
					
						
							| 
									
										
										
										
											2022-12-18 16:58:19 +01:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "rotation_degrees", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NONE), "set_rotation_degrees", "get_rotation_degrees"); | 
					
						
							| 
									
										
										
										
											2022-04-05 02:58:21 +02:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "scale", PROPERTY_HINT_LINK), "set_scale", "get_scale"); | 
					
						
							| 
									
										
										
											
												Fix editor suffixes and degrees conversion
* Functions to convert to/from degrees are all gone. Conversion is done by the editor.
* Use PROPERTY_HINT_ANGLE instead of PROPERTY_HINT_RANGE to edit radian angles in degrees.
* Added possibility to add suffixes to range properties, use "min,max[,step][,suffix:<something>]" example "0,100,1,suffix:m"
* In general, can add suffixes for EditorSpinSlider
Not covered by this PR, will have to be addressed by future ones:
* Ability to switch radians/degrees in the inspector for angle properties (if actually wanted).
* Animations previously made will most likely break, need to add a way to make old ones compatible.
* Only added a "px" suffix to 2D position and a "m" one to 3D position, someone needs to go through the rest of the engine and add all remaining suffixes.
* Likely also need to track down usage of EditorSpinSlider outside properties to add suffixes to it too.
											
										 
											2021-06-29 16:42:12 -03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "skew", PROPERTY_HINT_RANGE, "-89.9,89.9,0.1,radians"), "set_skew", "get_skew"); | 
					
						
							| 
									
										
										
										
											2021-12-02 18:09:19 -06:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::TRANSFORM2D, "transform", PROPERTY_HINT_NONE, "suffix:px", PROPERTY_USAGE_NONE), "set_transform", "get_transform"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-02 18:09:19 -06:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "global_position", PROPERTY_HINT_NONE, "suffix:px", PROPERTY_USAGE_NONE), "set_global_position", "get_global_position"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "global_rotation", PROPERTY_HINT_NONE, "radians", PROPERTY_USAGE_NONE), "set_global_rotation", "get_global_rotation"); | 
					
						
							| 
									
										
										
										
											2022-12-18 16:58:19 +01:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "global_rotation_degrees", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NONE), "set_global_rotation_degrees", "get_global_rotation_degrees"); | 
					
						
							| 
									
										
										
										
											2021-06-17 19:10:18 -04:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "global_scale", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NONE), "set_global_scale", "get_global_scale"); | 
					
						
							| 
									
										
										
										
											2021-08-12 19:48:34 +02:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "global_skew", PROPERTY_HINT_NONE, "radians", PROPERTY_USAGE_NONE), "set_global_skew", "get_global_skew"); | 
					
						
							| 
									
										
										
										
											2021-12-02 18:09:19 -06:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::TRANSFORM2D, "global_transform", PROPERTY_HINT_NONE, "suffix:px", PROPERTY_USAGE_NONE), "set_global_transform", "get_global_transform"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } |