class_node3d.rst 58 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016
  1. :github_url: hide
  2. .. DO NOT EDIT THIS FILE!!!
  3. .. Generated automatically from Godot engine sources.
  4. .. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Node3D.xml.
  6. .. _class_Node3D:
  7. Node3D
  8. ======
  9. **Inherits:** :ref:`Node<class_Node>` **<** :ref:`Object<class_Object>`
  10. **Inherited By:** :ref:`AudioListener3D<class_AudioListener3D>`, :ref:`AudioStreamPlayer3D<class_AudioStreamPlayer3D>`, :ref:`BoneAttachment3D<class_BoneAttachment3D>`, :ref:`Camera3D<class_Camera3D>`, :ref:`CollisionObject3D<class_CollisionObject3D>`, :ref:`CollisionPolygon3D<class_CollisionPolygon3D>`, :ref:`CollisionShape3D<class_CollisionShape3D>`, :ref:`GridMap<class_GridMap>`, :ref:`ImporterMeshInstance3D<class_ImporterMeshInstance3D>`, :ref:`Joint3D<class_Joint3D>`, :ref:`LightmapProbe<class_LightmapProbe>`, :ref:`Marker3D<class_Marker3D>`, :ref:`NavigationLink3D<class_NavigationLink3D>`, :ref:`NavigationObstacle3D<class_NavigationObstacle3D>`, :ref:`NavigationRegion3D<class_NavigationRegion3D>`, :ref:`OccluderInstance3D<class_OccluderInstance3D>`, :ref:`OpenXRHand<class_OpenXRHand>`, :ref:`Path3D<class_Path3D>`, :ref:`PathFollow3D<class_PathFollow3D>`, :ref:`RayCast3D<class_RayCast3D>`, :ref:`RemoteTransform3D<class_RemoteTransform3D>`, :ref:`ShapeCast3D<class_ShapeCast3D>`, :ref:`Skeleton3D<class_Skeleton3D>`, :ref:`SpringArm3D<class_SpringArm3D>`, :ref:`VehicleWheel3D<class_VehicleWheel3D>`, :ref:`VisualInstance3D<class_VisualInstance3D>`, :ref:`XRNode3D<class_XRNode3D>`, :ref:`XROrigin3D<class_XROrigin3D>`
  11. Most basic 3D game object, parent of all 3D-related nodes.
  12. .. rst-class:: classref-introduction-group
  13. Description
  14. -----------
  15. Most basic 3D game object, with a :ref:`Transform3D<class_Transform3D>` and visibility settings. All other 3D game objects inherit from Node3D. Use **Node3D** as a parent node to move, scale, rotate and show/hide children in a 3D project.
  16. Affine operations (rotate, scale, translate) happen in parent's local coordinate system, unless the **Node3D** object is set as top-level. Affine operations in this coordinate system correspond to direct affine operations on the **Node3D**'s transform. The word local below refers to this coordinate system. The coordinate system that is attached to the **Node3D** object itself is referred to as object-local coordinate system.
  17. \ **Note:** Unless otherwise specified, all methods that have angle parameters must have angles specified as *radians*. To convert degrees to radians, use :ref:`@GlobalScope.deg_to_rad<class_@GlobalScope_method_deg_to_rad>`.
  18. \ **Note:** Be aware that "Spatial" nodes are now called "Node3D" starting with Godot 4. Any Godot 3.x references to "Spatial" nodes refer to "Node3D" in Godot 4.
  19. .. rst-class:: classref-introduction-group
  20. Tutorials
  21. ---------
  22. - :doc:`Introduction to 3D <../tutorials/3d/introduction_to_3d>`
  23. - `All 3D Demos <https://github.com/godotengine/godot-demo-projects/tree/master/3d>`__
  24. .. rst-class:: classref-reftable-group
  25. Properties
  26. ----------
  27. .. table::
  28. :widths: auto
  29. +-------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------------------------------+
  30. | :ref:`Basis<class_Basis>` | :ref:`basis<class_Node3D_property_basis>` | |
  31. +-------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------------------------------+
  32. | :ref:`Vector3<class_Vector3>` | :ref:`global_position<class_Node3D_property_global_position>` | |
  33. +-------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------------------------------+
  34. | :ref:`Vector3<class_Vector3>` | :ref:`global_rotation<class_Node3D_property_global_rotation>` | |
  35. +-------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------------------------------+
  36. | :ref:`Vector3<class_Vector3>` | :ref:`global_rotation_degrees<class_Node3D_property_global_rotation_degrees>` | |
  37. +-------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------------------------------+
  38. | :ref:`Transform3D<class_Transform3D>` | :ref:`global_transform<class_Node3D_property_global_transform>` | |
  39. +-------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------------------------------+
  40. | :ref:`Vector3<class_Vector3>` | :ref:`position<class_Node3D_property_position>` | ``Vector3(0, 0, 0)`` |
  41. +-------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------------------------------+
  42. | :ref:`Quaternion<class_Quaternion>` | :ref:`quaternion<class_Node3D_property_quaternion>` | |
  43. +-------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------------------------------+
  44. | :ref:`Vector3<class_Vector3>` | :ref:`rotation<class_Node3D_property_rotation>` | ``Vector3(0, 0, 0)`` |
  45. +-------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------------------------------+
  46. | :ref:`Vector3<class_Vector3>` | :ref:`rotation_degrees<class_Node3D_property_rotation_degrees>` | |
  47. +-------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------------------------------+
  48. | :ref:`RotationEditMode<enum_Node3D_RotationEditMode>` | :ref:`rotation_edit_mode<class_Node3D_property_rotation_edit_mode>` | ``0`` |
  49. +-------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------------------------------+
  50. | :ref:`EulerOrder<enum_@GlobalScope_EulerOrder>` | :ref:`rotation_order<class_Node3D_property_rotation_order>` | ``2`` |
  51. +-------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------------------------------+
  52. | :ref:`Vector3<class_Vector3>` | :ref:`scale<class_Node3D_property_scale>` | ``Vector3(1, 1, 1)`` |
  53. +-------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------------------------------+
  54. | :ref:`bool<class_bool>` | :ref:`top_level<class_Node3D_property_top_level>` | ``false`` |
  55. +-------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------------------------------+
  56. | :ref:`Transform3D<class_Transform3D>` | :ref:`transform<class_Node3D_property_transform>` | ``Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0)`` |
  57. +-------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------------------------------+
  58. | :ref:`NodePath<class_NodePath>` | :ref:`visibility_parent<class_Node3D_property_visibility_parent>` | ``NodePath("")`` |
  59. +-------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------------------------------+
  60. | :ref:`bool<class_bool>` | :ref:`visible<class_Node3D_property_visible>` | ``true`` |
  61. +-------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------------------------------+
  62. .. rst-class:: classref-reftable-group
  63. Methods
  64. -------
  65. .. table::
  66. :widths: auto
  67. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  68. | void | :ref:`add_gizmo<class_Node3D_method_add_gizmo>` **(** :ref:`Node3DGizmo<class_Node3DGizmo>` gizmo **)** |
  69. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  70. | void | :ref:`clear_gizmos<class_Node3D_method_clear_gizmos>` **(** **)** |
  71. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  72. | void | :ref:`clear_subgizmo_selection<class_Node3D_method_clear_subgizmo_selection>` **(** **)** |
  73. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  74. | void | :ref:`force_update_transform<class_Node3D_method_force_update_transform>` **(** **)** |
  75. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  76. | :ref:`Node3DGizmo[]<class_Node3DGizmo>` | :ref:`get_gizmos<class_Node3D_method_get_gizmos>` **(** **)** |const| |
  77. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  78. | :ref:`Node3D<class_Node3D>` | :ref:`get_parent_node_3d<class_Node3D_method_get_parent_node_3d>` **(** **)** |const| |
  79. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  80. | :ref:`World3D<class_World3D>` | :ref:`get_world_3d<class_Node3D_method_get_world_3d>` **(** **)** |const| |
  81. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  82. | void | :ref:`global_rotate<class_Node3D_method_global_rotate>` **(** :ref:`Vector3<class_Vector3>` axis, :ref:`float<class_float>` angle **)** |
  83. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  84. | void | :ref:`global_scale<class_Node3D_method_global_scale>` **(** :ref:`Vector3<class_Vector3>` scale **)** |
  85. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  86. | void | :ref:`global_translate<class_Node3D_method_global_translate>` **(** :ref:`Vector3<class_Vector3>` offset **)** |
  87. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  88. | void | :ref:`hide<class_Node3D_method_hide>` **(** **)** |
  89. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  90. | :ref:`bool<class_bool>` | :ref:`is_local_transform_notification_enabled<class_Node3D_method_is_local_transform_notification_enabled>` **(** **)** |const| |
  91. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  92. | :ref:`bool<class_bool>` | :ref:`is_scale_disabled<class_Node3D_method_is_scale_disabled>` **(** **)** |const| |
  93. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  94. | :ref:`bool<class_bool>` | :ref:`is_transform_notification_enabled<class_Node3D_method_is_transform_notification_enabled>` **(** **)** |const| |
  95. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  96. | :ref:`bool<class_bool>` | :ref:`is_visible_in_tree<class_Node3D_method_is_visible_in_tree>` **(** **)** |const| |
  97. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  98. | void | :ref:`look_at<class_Node3D_method_look_at>` **(** :ref:`Vector3<class_Vector3>` target, :ref:`Vector3<class_Vector3>` up=Vector3(0, 1, 0), :ref:`bool<class_bool>` use_model_front=false **)** |
  99. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  100. | void | :ref:`look_at_from_position<class_Node3D_method_look_at_from_position>` **(** :ref:`Vector3<class_Vector3>` position, :ref:`Vector3<class_Vector3>` target, :ref:`Vector3<class_Vector3>` up=Vector3(0, 1, 0), :ref:`bool<class_bool>` use_model_front=false **)** |
  101. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  102. | void | :ref:`orthonormalize<class_Node3D_method_orthonormalize>` **(** **)** |
  103. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  104. | void | :ref:`rotate<class_Node3D_method_rotate>` **(** :ref:`Vector3<class_Vector3>` axis, :ref:`float<class_float>` angle **)** |
  105. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  106. | void | :ref:`rotate_object_local<class_Node3D_method_rotate_object_local>` **(** :ref:`Vector3<class_Vector3>` axis, :ref:`float<class_float>` angle **)** |
  107. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  108. | void | :ref:`rotate_x<class_Node3D_method_rotate_x>` **(** :ref:`float<class_float>` angle **)** |
  109. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  110. | void | :ref:`rotate_y<class_Node3D_method_rotate_y>` **(** :ref:`float<class_float>` angle **)** |
  111. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  112. | void | :ref:`rotate_z<class_Node3D_method_rotate_z>` **(** :ref:`float<class_float>` angle **)** |
  113. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  114. | void | :ref:`scale_object_local<class_Node3D_method_scale_object_local>` **(** :ref:`Vector3<class_Vector3>` scale **)** |
  115. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  116. | void | :ref:`set_disable_scale<class_Node3D_method_set_disable_scale>` **(** :ref:`bool<class_bool>` disable **)** |
  117. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  118. | void | :ref:`set_identity<class_Node3D_method_set_identity>` **(** **)** |
  119. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  120. | void | :ref:`set_ignore_transform_notification<class_Node3D_method_set_ignore_transform_notification>` **(** :ref:`bool<class_bool>` enabled **)** |
  121. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  122. | void | :ref:`set_notify_local_transform<class_Node3D_method_set_notify_local_transform>` **(** :ref:`bool<class_bool>` enable **)** |
  123. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  124. | void | :ref:`set_notify_transform<class_Node3D_method_set_notify_transform>` **(** :ref:`bool<class_bool>` enable **)** |
  125. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  126. | void | :ref:`set_subgizmo_selection<class_Node3D_method_set_subgizmo_selection>` **(** :ref:`Node3DGizmo<class_Node3DGizmo>` gizmo, :ref:`int<class_int>` id, :ref:`Transform3D<class_Transform3D>` transform **)** |
  127. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  128. | void | :ref:`show<class_Node3D_method_show>` **(** **)** |
  129. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  130. | :ref:`Vector3<class_Vector3>` | :ref:`to_global<class_Node3D_method_to_global>` **(** :ref:`Vector3<class_Vector3>` local_point **)** |const| |
  131. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  132. | :ref:`Vector3<class_Vector3>` | :ref:`to_local<class_Node3D_method_to_local>` **(** :ref:`Vector3<class_Vector3>` global_point **)** |const| |
  133. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  134. | void | :ref:`translate<class_Node3D_method_translate>` **(** :ref:`Vector3<class_Vector3>` offset **)** |
  135. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  136. | void | :ref:`translate_object_local<class_Node3D_method_translate_object_local>` **(** :ref:`Vector3<class_Vector3>` offset **)** |
  137. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  138. | void | :ref:`update_gizmos<class_Node3D_method_update_gizmos>` **(** **)** |
  139. +-----------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  140. .. rst-class:: classref-section-separator
  141. ----
  142. .. rst-class:: classref-descriptions-group
  143. Signals
  144. -------
  145. .. _class_Node3D_signal_visibility_changed:
  146. .. rst-class:: classref-signal
  147. **visibility_changed** **(** **)**
  148. Emitted when node visibility changes.
  149. .. rst-class:: classref-section-separator
  150. ----
  151. .. rst-class:: classref-descriptions-group
  152. Enumerations
  153. ------------
  154. .. _enum_Node3D_RotationEditMode:
  155. .. rst-class:: classref-enumeration
  156. enum **RotationEditMode**:
  157. .. _class_Node3D_constant_ROTATION_EDIT_MODE_EULER:
  158. .. rst-class:: classref-enumeration-constant
  159. :ref:`RotationEditMode<enum_Node3D_RotationEditMode>` **ROTATION_EDIT_MODE_EULER** = ``0``
  160. The rotation is edited using :ref:`Vector3<class_Vector3>` Euler angles.
  161. .. _class_Node3D_constant_ROTATION_EDIT_MODE_QUATERNION:
  162. .. rst-class:: classref-enumeration-constant
  163. :ref:`RotationEditMode<enum_Node3D_RotationEditMode>` **ROTATION_EDIT_MODE_QUATERNION** = ``1``
  164. The rotation is edited using a :ref:`Quaternion<class_Quaternion>`.
  165. .. _class_Node3D_constant_ROTATION_EDIT_MODE_BASIS:
  166. .. rst-class:: classref-enumeration-constant
  167. :ref:`RotationEditMode<enum_Node3D_RotationEditMode>` **ROTATION_EDIT_MODE_BASIS** = ``2``
  168. The rotation is edited using a :ref:`Basis<class_Basis>`. In this mode, :ref:`scale<class_Node3D_property_scale>` can't be edited separately.
  169. .. rst-class:: classref-section-separator
  170. ----
  171. .. rst-class:: classref-descriptions-group
  172. Constants
  173. ---------
  174. .. _class_Node3D_constant_NOTIFICATION_TRANSFORM_CHANGED:
  175. .. rst-class:: classref-constant
  176. **NOTIFICATION_TRANSFORM_CHANGED** = ``2000``
  177. Node3D nodes receives this notification when their global transform changes. This means that either the current or a parent node changed its transform.
  178. In order for :ref:`NOTIFICATION_TRANSFORM_CHANGED<class_Node3D_constant_NOTIFICATION_TRANSFORM_CHANGED>` to work, users first need to ask for it, with :ref:`set_notify_transform<class_Node3D_method_set_notify_transform>`. The notification is also sent if the node is in the editor context and it has at least one valid gizmo.
  179. .. _class_Node3D_constant_NOTIFICATION_ENTER_WORLD:
  180. .. rst-class:: classref-constant
  181. **NOTIFICATION_ENTER_WORLD** = ``41``
  182. Node3D nodes receives this notification when they are registered to new :ref:`World3D<class_World3D>` resource.
  183. .. _class_Node3D_constant_NOTIFICATION_EXIT_WORLD:
  184. .. rst-class:: classref-constant
  185. **NOTIFICATION_EXIT_WORLD** = ``42``
  186. Node3D nodes receives this notification when they are unregistered from current :ref:`World3D<class_World3D>` resource.
  187. .. _class_Node3D_constant_NOTIFICATION_VISIBILITY_CHANGED:
  188. .. rst-class:: classref-constant
  189. **NOTIFICATION_VISIBILITY_CHANGED** = ``43``
  190. Node3D nodes receives this notification when their visibility changes.
  191. .. _class_Node3D_constant_NOTIFICATION_LOCAL_TRANSFORM_CHANGED:
  192. .. rst-class:: classref-constant
  193. **NOTIFICATION_LOCAL_TRANSFORM_CHANGED** = ``44``
  194. Node3D nodes receives this notification when their local transform changes. This is not received when the transform of a parent node is changed.
  195. In order for :ref:`NOTIFICATION_LOCAL_TRANSFORM_CHANGED<class_Node3D_constant_NOTIFICATION_LOCAL_TRANSFORM_CHANGED>` to work, users first need to ask for it, with :ref:`set_notify_local_transform<class_Node3D_method_set_notify_local_transform>`.
  196. .. rst-class:: classref-section-separator
  197. ----
  198. .. rst-class:: classref-descriptions-group
  199. Property Descriptions
  200. ---------------------
  201. .. _class_Node3D_property_basis:
  202. .. rst-class:: classref-property
  203. :ref:`Basis<class_Basis>` **basis**
  204. .. rst-class:: classref-property-setget
  205. - void **set_basis** **(** :ref:`Basis<class_Basis>` value **)**
  206. - :ref:`Basis<class_Basis>` **get_basis** **(** **)**
  207. Direct access to the 3x3 basis of the :ref:`Transform3D<class_Transform3D>` property.
  208. .. rst-class:: classref-item-separator
  209. ----
  210. .. _class_Node3D_property_global_position:
  211. .. rst-class:: classref-property
  212. :ref:`Vector3<class_Vector3>` **global_position**
  213. .. rst-class:: classref-property-setget
  214. - void **set_global_position** **(** :ref:`Vector3<class_Vector3>` value **)**
  215. - :ref:`Vector3<class_Vector3>` **get_global_position** **(** **)**
  216. Global position of this node. This is equivalent to ``global_transform.origin``.
  217. .. rst-class:: classref-item-separator
  218. ----
  219. .. _class_Node3D_property_global_rotation:
  220. .. rst-class:: classref-property
  221. :ref:`Vector3<class_Vector3>` **global_rotation**
  222. .. rst-class:: classref-property-setget
  223. - void **set_global_rotation** **(** :ref:`Vector3<class_Vector3>` value **)**
  224. - :ref:`Vector3<class_Vector3>` **get_global_rotation** **(** **)**
  225. Rotation part of the global transformation in radians, specified in terms of YXZ-Euler angles in the format (X angle, Y angle, Z angle).
  226. \ **Note:** In the mathematical sense, rotation is a matrix and not a vector. The three Euler angles, which are the three independent parameters of the Euler-angle parametrization of the rotation matrix, are stored in a :ref:`Vector3<class_Vector3>` data structure not because the rotation is a vector, but only because :ref:`Vector3<class_Vector3>` exists as a convenient data-structure to store 3 floating-point numbers. Therefore, applying affine operations on the rotation "vector" is not meaningful.
  227. .. rst-class:: classref-item-separator
  228. ----
  229. .. _class_Node3D_property_global_rotation_degrees:
  230. .. rst-class:: classref-property
  231. :ref:`Vector3<class_Vector3>` **global_rotation_degrees**
  232. .. rst-class:: classref-property-setget
  233. - void **set_global_rotation_degrees** **(** :ref:`Vector3<class_Vector3>` value **)**
  234. - :ref:`Vector3<class_Vector3>` **get_global_rotation_degrees** **(** **)**
  235. Helper property to access :ref:`global_rotation<class_Node3D_property_global_rotation>` in degrees instead of radians.
  236. .. rst-class:: classref-item-separator
  237. ----
  238. .. _class_Node3D_property_global_transform:
  239. .. rst-class:: classref-property
  240. :ref:`Transform3D<class_Transform3D>` **global_transform**
  241. .. rst-class:: classref-property-setget
  242. - void **set_global_transform** **(** :ref:`Transform3D<class_Transform3D>` value **)**
  243. - :ref:`Transform3D<class_Transform3D>` **get_global_transform** **(** **)**
  244. World3D space (global) :ref:`Transform3D<class_Transform3D>` of this node.
  245. .. rst-class:: classref-item-separator
  246. ----
  247. .. _class_Node3D_property_position:
  248. .. rst-class:: classref-property
  249. :ref:`Vector3<class_Vector3>` **position** = ``Vector3(0, 0, 0)``
  250. .. rst-class:: classref-property-setget
  251. - void **set_position** **(** :ref:`Vector3<class_Vector3>` value **)**
  252. - :ref:`Vector3<class_Vector3>` **get_position** **(** **)**
  253. Local position or translation of this node relative to the parent. This is equivalent to ``transform.origin``.
  254. .. rst-class:: classref-item-separator
  255. ----
  256. .. _class_Node3D_property_quaternion:
  257. .. rst-class:: classref-property
  258. :ref:`Quaternion<class_Quaternion>` **quaternion**
  259. .. rst-class:: classref-property-setget
  260. - void **set_quaternion** **(** :ref:`Quaternion<class_Quaternion>` value **)**
  261. - :ref:`Quaternion<class_Quaternion>` **get_quaternion** **(** **)**
  262. Access to the node rotation as a :ref:`Quaternion<class_Quaternion>`. This property is ideal for tweening complex rotations.
  263. .. rst-class:: classref-item-separator
  264. ----
  265. .. _class_Node3D_property_rotation:
  266. .. rst-class:: classref-property
  267. :ref:`Vector3<class_Vector3>` **rotation** = ``Vector3(0, 0, 0)``
  268. .. rst-class:: classref-property-setget
  269. - void **set_rotation** **(** :ref:`Vector3<class_Vector3>` value **)**
  270. - :ref:`Vector3<class_Vector3>` **get_rotation** **(** **)**
  271. Rotation part of the local transformation in radians, specified in terms of Euler angles. The angles construct a rotaton in the order specified by the :ref:`rotation_order<class_Node3D_property_rotation_order>` property.
  272. \ **Note:** In the mathematical sense, rotation is a matrix and not a vector. The three Euler angles, which are the three independent parameters of the Euler-angle parametrization of the rotation matrix, are stored in a :ref:`Vector3<class_Vector3>` data structure not because the rotation is a vector, but only because :ref:`Vector3<class_Vector3>` exists as a convenient data-structure to store 3 floating-point numbers. Therefore, applying affine operations on the rotation "vector" is not meaningful.
  273. \ **Note:** This property is edited in the inspector in degrees. If you want to use degrees in a script, use :ref:`rotation_degrees<class_Node3D_property_rotation_degrees>`.
  274. .. rst-class:: classref-item-separator
  275. ----
  276. .. _class_Node3D_property_rotation_degrees:
  277. .. rst-class:: classref-property
  278. :ref:`Vector3<class_Vector3>` **rotation_degrees**
  279. .. rst-class:: classref-property-setget
  280. - void **set_rotation_degrees** **(** :ref:`Vector3<class_Vector3>` value **)**
  281. - :ref:`Vector3<class_Vector3>` **get_rotation_degrees** **(** **)**
  282. Helper property to access :ref:`rotation<class_Node3D_property_rotation>` in degrees instead of radians.
  283. .. rst-class:: classref-item-separator
  284. ----
  285. .. _class_Node3D_property_rotation_edit_mode:
  286. .. rst-class:: classref-property
  287. :ref:`RotationEditMode<enum_Node3D_RotationEditMode>` **rotation_edit_mode** = ``0``
  288. .. rst-class:: classref-property-setget
  289. - void **set_rotation_edit_mode** **(** :ref:`RotationEditMode<enum_Node3D_RotationEditMode>` value **)**
  290. - :ref:`RotationEditMode<enum_Node3D_RotationEditMode>` **get_rotation_edit_mode** **(** **)**
  291. Specify how rotation (and scale) will be presented in the editor.
  292. .. rst-class:: classref-item-separator
  293. ----
  294. .. _class_Node3D_property_rotation_order:
  295. .. rst-class:: classref-property
  296. :ref:`EulerOrder<enum_@GlobalScope_EulerOrder>` **rotation_order** = ``2``
  297. .. rst-class:: classref-property-setget
  298. - void **set_rotation_order** **(** :ref:`EulerOrder<enum_@GlobalScope_EulerOrder>` value **)**
  299. - :ref:`EulerOrder<enum_@GlobalScope_EulerOrder>` **get_rotation_order** **(** **)**
  300. Specify the axis rotation order of the :ref:`rotation<class_Node3D_property_rotation>` property. The final orientation is constructed by rotating the Euler angles in the order specified by this property.
  301. .. rst-class:: classref-item-separator
  302. ----
  303. .. _class_Node3D_property_scale:
  304. .. rst-class:: classref-property
  305. :ref:`Vector3<class_Vector3>` **scale** = ``Vector3(1, 1, 1)``
  306. .. rst-class:: classref-property-setget
  307. - void **set_scale** **(** :ref:`Vector3<class_Vector3>` value **)**
  308. - :ref:`Vector3<class_Vector3>` **get_scale** **(** **)**
  309. Scale part of the local transformation.
  310. \ **Note:** Mixed negative scales in 3D are not decomposable from the transformation matrix. Due to the way scale is represented with transformation matrices in Godot, the scale values will either be all positive or all negative.
  311. \ **Note:** Not all nodes are visually scaled by the :ref:`scale<class_Node3D_property_scale>` property. For example, :ref:`Light3D<class_Light3D>`\ s are not visually affected by :ref:`scale<class_Node3D_property_scale>`.
  312. .. rst-class:: classref-item-separator
  313. ----
  314. .. _class_Node3D_property_top_level:
  315. .. rst-class:: classref-property
  316. :ref:`bool<class_bool>` **top_level** = ``false``
  317. .. rst-class:: classref-property-setget
  318. - void **set_as_top_level** **(** :ref:`bool<class_bool>` value **)**
  319. - :ref:`bool<class_bool>` **is_set_as_top_level** **(** **)**
  320. If ``true``, the node will not inherit its transformations from its parent. Node transformations are only in global space.
  321. .. rst-class:: classref-item-separator
  322. ----
  323. .. _class_Node3D_property_transform:
  324. .. rst-class:: classref-property
  325. :ref:`Transform3D<class_Transform3D>` **transform** = ``Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0)``
  326. .. rst-class:: classref-property-setget
  327. - void **set_transform** **(** :ref:`Transform3D<class_Transform3D>` value **)**
  328. - :ref:`Transform3D<class_Transform3D>` **get_transform** **(** **)**
  329. Local space :ref:`Transform3D<class_Transform3D>` of this node, with respect to the parent node.
  330. .. rst-class:: classref-item-separator
  331. ----
  332. .. _class_Node3D_property_visibility_parent:
  333. .. rst-class:: classref-property
  334. :ref:`NodePath<class_NodePath>` **visibility_parent** = ``NodePath("")``
  335. .. rst-class:: classref-property-setget
  336. - void **set_visibility_parent** **(** :ref:`NodePath<class_NodePath>` value **)**
  337. - :ref:`NodePath<class_NodePath>` **get_visibility_parent** **(** **)**
  338. Defines the visibility range parent for this node and its subtree. The visibility parent must be a GeometryInstance3D. Any visual instance will only be visible if the visibility parent (and all of its visibility ancestors) is hidden by being closer to the camera than its own :ref:`GeometryInstance3D.visibility_range_begin<class_GeometryInstance3D_property_visibility_range_begin>`. Nodes hidden via the :ref:`visible<class_Node3D_property_visible>` property are essentially removed from the visibility dependency tree, so dependent instances will not take the hidden node or its ancestors into account.
  339. .. rst-class:: classref-item-separator
  340. ----
  341. .. _class_Node3D_property_visible:
  342. .. rst-class:: classref-property
  343. :ref:`bool<class_bool>` **visible** = ``true``
  344. .. rst-class:: classref-property-setget
  345. - void **set_visible** **(** :ref:`bool<class_bool>` value **)**
  346. - :ref:`bool<class_bool>` **is_visible** **(** **)**
  347. If ``true``, this node is drawn. The node is only visible if all of its ancestors are visible as well (in other words, :ref:`is_visible_in_tree<class_Node3D_method_is_visible_in_tree>` must return ``true``).
  348. .. rst-class:: classref-section-separator
  349. ----
  350. .. rst-class:: classref-descriptions-group
  351. Method Descriptions
  352. -------------------
  353. .. _class_Node3D_method_add_gizmo:
  354. .. rst-class:: classref-method
  355. void **add_gizmo** **(** :ref:`Node3DGizmo<class_Node3DGizmo>` gizmo **)**
  356. Attach a gizmo to this ``Node3D``.
  357. .. rst-class:: classref-item-separator
  358. ----
  359. .. _class_Node3D_method_clear_gizmos:
  360. .. rst-class:: classref-method
  361. void **clear_gizmos** **(** **)**
  362. Clear all gizmos attached to this ``Node3D``.
  363. .. rst-class:: classref-item-separator
  364. ----
  365. .. _class_Node3D_method_clear_subgizmo_selection:
  366. .. rst-class:: classref-method
  367. void **clear_subgizmo_selection** **(** **)**
  368. Clears subgizmo selection for this node in the editor. Useful when subgizmo IDs become invalid after a property change.
  369. .. rst-class:: classref-item-separator
  370. ----
  371. .. _class_Node3D_method_force_update_transform:
  372. .. rst-class:: classref-method
  373. void **force_update_transform** **(** **)**
  374. Forces the transform to update. Transform changes in physics are not instant for performance reasons. Transforms are accumulated and then set. Use this if you need an up-to-date transform when doing physics operations.
  375. .. rst-class:: classref-item-separator
  376. ----
  377. .. _class_Node3D_method_get_gizmos:
  378. .. rst-class:: classref-method
  379. :ref:`Node3DGizmo[]<class_Node3DGizmo>` **get_gizmos** **(** **)** |const|
  380. Returns all the gizmos attached to this ``Node3D``.
  381. .. rst-class:: classref-item-separator
  382. ----
  383. .. _class_Node3D_method_get_parent_node_3d:
  384. .. rst-class:: classref-method
  385. :ref:`Node3D<class_Node3D>` **get_parent_node_3d** **(** **)** |const|
  386. Returns the parent **Node3D**, or ``null`` if no parent exists, the parent is not of type **Node3D**, or :ref:`top_level<class_Node3D_property_top_level>` is ``true``.
  387. \ **Note:** Calling this method is not equivalent to ``get_parent() as Node3D``, which does not take :ref:`top_level<class_Node3D_property_top_level>` into account.
  388. .. rst-class:: classref-item-separator
  389. ----
  390. .. _class_Node3D_method_get_world_3d:
  391. .. rst-class:: classref-method
  392. :ref:`World3D<class_World3D>` **get_world_3d** **(** **)** |const|
  393. Returns the current :ref:`World3D<class_World3D>` resource this **Node3D** node is registered to.
  394. .. rst-class:: classref-item-separator
  395. ----
  396. .. _class_Node3D_method_global_rotate:
  397. .. rst-class:: classref-method
  398. void **global_rotate** **(** :ref:`Vector3<class_Vector3>` axis, :ref:`float<class_float>` angle **)**
  399. Rotates the global (world) transformation around axis, a unit :ref:`Vector3<class_Vector3>`, by specified angle in radians. The rotation axis is in global coordinate system.
  400. .. rst-class:: classref-item-separator
  401. ----
  402. .. _class_Node3D_method_global_scale:
  403. .. rst-class:: classref-method
  404. void **global_scale** **(** :ref:`Vector3<class_Vector3>` scale **)**
  405. Scales the global (world) transformation by the given :ref:`Vector3<class_Vector3>` scale factors.
  406. .. rst-class:: classref-item-separator
  407. ----
  408. .. _class_Node3D_method_global_translate:
  409. .. rst-class:: classref-method
  410. void **global_translate** **(** :ref:`Vector3<class_Vector3>` offset **)**
  411. Moves the global (world) transformation by :ref:`Vector3<class_Vector3>` offset. The offset is in global coordinate system.
  412. .. rst-class:: classref-item-separator
  413. ----
  414. .. _class_Node3D_method_hide:
  415. .. rst-class:: classref-method
  416. void **hide** **(** **)**
  417. Disables rendering of this node. Changes :ref:`visible<class_Node3D_property_visible>` to ``false``.
  418. .. rst-class:: classref-item-separator
  419. ----
  420. .. _class_Node3D_method_is_local_transform_notification_enabled:
  421. .. rst-class:: classref-method
  422. :ref:`bool<class_bool>` **is_local_transform_notification_enabled** **(** **)** |const|
  423. Returns whether node notifies about its local transformation changes. **Node3D** will not propagate this by default.
  424. .. rst-class:: classref-item-separator
  425. ----
  426. .. _class_Node3D_method_is_scale_disabled:
  427. .. rst-class:: classref-method
  428. :ref:`bool<class_bool>` **is_scale_disabled** **(** **)** |const|
  429. Returns whether this node uses a scale of ``(1, 1, 1)`` or its local transformation scale.
  430. .. rst-class:: classref-item-separator
  431. ----
  432. .. _class_Node3D_method_is_transform_notification_enabled:
  433. .. rst-class:: classref-method
  434. :ref:`bool<class_bool>` **is_transform_notification_enabled** **(** **)** |const|
  435. Returns whether the node notifies about its global and local transformation changes. **Node3D** will not propagate this by default.
  436. .. rst-class:: classref-item-separator
  437. ----
  438. .. _class_Node3D_method_is_visible_in_tree:
  439. .. rst-class:: classref-method
  440. :ref:`bool<class_bool>` **is_visible_in_tree** **(** **)** |const|
  441. Returns ``true`` if the node is present in the :ref:`SceneTree<class_SceneTree>`, its :ref:`visible<class_Node3D_property_visible>` property is ``true`` and all its ancestors are also visible. If any ancestor is hidden, this node will not be visible in the scene tree.
  442. .. rst-class:: classref-item-separator
  443. ----
  444. .. _class_Node3D_method_look_at:
  445. .. rst-class:: classref-method
  446. void **look_at** **(** :ref:`Vector3<class_Vector3>` target, :ref:`Vector3<class_Vector3>` up=Vector3(0, 1, 0), :ref:`bool<class_bool>` use_model_front=false **)**
  447. Rotates the node so that the local forward axis (-Z, :ref:`Vector3.FORWARD<class_Vector3_constant_FORWARD>`) points toward the ``target`` position.
  448. The local up axis (+Y) points as close to the ``up`` vector as possible while staying perpendicular to the local forward axis. The resulting transform is orthogonal, and the scale is preserved. Non-uniform scaling may not work correctly.
  449. The ``target`` position cannot be the same as the node's position, the ``up`` vector cannot be zero, and the direction from the node's position to the ``target`` vector cannot be parallel to the ``up`` vector.
  450. Operations take place in global space, which means that the node must be in the scene tree.
  451. If ``use_model_front`` is ``true``, the +Z axis (asset front) is treated as forward (implies +X is left) and points toward the ``target`` position. By default, the -Z axis (camera forward) is treated as forward (implies +X is right).
  452. .. rst-class:: classref-item-separator
  453. ----
  454. .. _class_Node3D_method_look_at_from_position:
  455. .. rst-class:: classref-method
  456. void **look_at_from_position** **(** :ref:`Vector3<class_Vector3>` position, :ref:`Vector3<class_Vector3>` target, :ref:`Vector3<class_Vector3>` up=Vector3(0, 1, 0), :ref:`bool<class_bool>` use_model_front=false **)**
  457. Moves the node to the specified ``position``, and then rotates the node to point toward the ``target`` as per :ref:`look_at<class_Node3D_method_look_at>`. Operations take place in global space.
  458. .. rst-class:: classref-item-separator
  459. ----
  460. .. _class_Node3D_method_orthonormalize:
  461. .. rst-class:: classref-method
  462. void **orthonormalize** **(** **)**
  463. Resets this node's transformations (like scale, skew and taper) preserving its rotation and translation by performing Gram-Schmidt orthonormalization on this node's :ref:`Transform3D<class_Transform3D>`.
  464. .. rst-class:: classref-item-separator
  465. ----
  466. .. _class_Node3D_method_rotate:
  467. .. rst-class:: classref-method
  468. void **rotate** **(** :ref:`Vector3<class_Vector3>` axis, :ref:`float<class_float>` angle **)**
  469. Rotates the local transformation around axis, a unit :ref:`Vector3<class_Vector3>`, by specified angle in radians.
  470. .. rst-class:: classref-item-separator
  471. ----
  472. .. _class_Node3D_method_rotate_object_local:
  473. .. rst-class:: classref-method
  474. void **rotate_object_local** **(** :ref:`Vector3<class_Vector3>` axis, :ref:`float<class_float>` angle **)**
  475. Rotates the local transformation around axis, a unit :ref:`Vector3<class_Vector3>`, by specified angle in radians. The rotation axis is in object-local coordinate system.
  476. .. rst-class:: classref-item-separator
  477. ----
  478. .. _class_Node3D_method_rotate_x:
  479. .. rst-class:: classref-method
  480. void **rotate_x** **(** :ref:`float<class_float>` angle **)**
  481. Rotates the local transformation around the X axis by angle in radians.
  482. .. rst-class:: classref-item-separator
  483. ----
  484. .. _class_Node3D_method_rotate_y:
  485. .. rst-class:: classref-method
  486. void **rotate_y** **(** :ref:`float<class_float>` angle **)**
  487. Rotates the local transformation around the Y axis by angle in radians.
  488. .. rst-class:: classref-item-separator
  489. ----
  490. .. _class_Node3D_method_rotate_z:
  491. .. rst-class:: classref-method
  492. void **rotate_z** **(** :ref:`float<class_float>` angle **)**
  493. Rotates the local transformation around the Z axis by angle in radians.
  494. .. rst-class:: classref-item-separator
  495. ----
  496. .. _class_Node3D_method_scale_object_local:
  497. .. rst-class:: classref-method
  498. void **scale_object_local** **(** :ref:`Vector3<class_Vector3>` scale **)**
  499. Scales the local transformation by given 3D scale factors in object-local coordinate system.
  500. .. rst-class:: classref-item-separator
  501. ----
  502. .. _class_Node3D_method_set_disable_scale:
  503. .. rst-class:: classref-method
  504. void **set_disable_scale** **(** :ref:`bool<class_bool>` disable **)**
  505. Sets whether the node uses a scale of ``(1, 1, 1)`` or its local transformation scale. Changes to the local transformation scale are preserved.
  506. .. rst-class:: classref-item-separator
  507. ----
  508. .. _class_Node3D_method_set_identity:
  509. .. rst-class:: classref-method
  510. void **set_identity** **(** **)**
  511. Reset all transformations for this node (sets its :ref:`Transform3D<class_Transform3D>` to the identity matrix).
  512. .. rst-class:: classref-item-separator
  513. ----
  514. .. _class_Node3D_method_set_ignore_transform_notification:
  515. .. rst-class:: classref-method
  516. void **set_ignore_transform_notification** **(** :ref:`bool<class_bool>` enabled **)**
  517. Sets whether the node ignores notification that its transformation (global or local) changed.
  518. .. rst-class:: classref-item-separator
  519. ----
  520. .. _class_Node3D_method_set_notify_local_transform:
  521. .. rst-class:: classref-method
  522. void **set_notify_local_transform** **(** :ref:`bool<class_bool>` enable **)**
  523. Sets whether the node notifies about its local transformation changes. **Node3D** will not propagate this by default.
  524. .. rst-class:: classref-item-separator
  525. ----
  526. .. _class_Node3D_method_set_notify_transform:
  527. .. rst-class:: classref-method
  528. void **set_notify_transform** **(** :ref:`bool<class_bool>` enable **)**
  529. Sets whether the node notifies about its global and local transformation changes. **Node3D** will not propagate this by default, unless it is in the editor context and it has a valid gizmo.
  530. .. rst-class:: classref-item-separator
  531. ----
  532. .. _class_Node3D_method_set_subgizmo_selection:
  533. .. rst-class:: classref-method
  534. void **set_subgizmo_selection** **(** :ref:`Node3DGizmo<class_Node3DGizmo>` gizmo, :ref:`int<class_int>` id, :ref:`Transform3D<class_Transform3D>` transform **)**
  535. Set subgizmo selection for this node in the editor.
  536. .. rst-class:: classref-item-separator
  537. ----
  538. .. _class_Node3D_method_show:
  539. .. rst-class:: classref-method
  540. void **show** **(** **)**
  541. Enables rendering of this node. Changes :ref:`visible<class_Node3D_property_visible>` to ``true``.
  542. .. rst-class:: classref-item-separator
  543. ----
  544. .. _class_Node3D_method_to_global:
  545. .. rst-class:: classref-method
  546. :ref:`Vector3<class_Vector3>` **to_global** **(** :ref:`Vector3<class_Vector3>` local_point **)** |const|
  547. Transforms ``local_point`` from this node's local space to world space.
  548. .. rst-class:: classref-item-separator
  549. ----
  550. .. _class_Node3D_method_to_local:
  551. .. rst-class:: classref-method
  552. :ref:`Vector3<class_Vector3>` **to_local** **(** :ref:`Vector3<class_Vector3>` global_point **)** |const|
  553. Transforms ``global_point`` from world space to this node's local space.
  554. .. rst-class:: classref-item-separator
  555. ----
  556. .. _class_Node3D_method_translate:
  557. .. rst-class:: classref-method
  558. void **translate** **(** :ref:`Vector3<class_Vector3>` offset **)**
  559. Changes the node's position by the given offset :ref:`Vector3<class_Vector3>`.
  560. Note that the translation ``offset`` is affected by the node's scale, so if scaled by e.g. ``(10, 1, 1)``, a translation by an offset of ``(2, 0, 0)`` would actually add 20 (``2 * 10``) to the X coordinate.
  561. .. rst-class:: classref-item-separator
  562. ----
  563. .. _class_Node3D_method_translate_object_local:
  564. .. rst-class:: classref-method
  565. void **translate_object_local** **(** :ref:`Vector3<class_Vector3>` offset **)**
  566. Changes the node's position by the given offset :ref:`Vector3<class_Vector3>` in local space.
  567. .. rst-class:: classref-item-separator
  568. ----
  569. .. _class_Node3D_method_update_gizmos:
  570. .. rst-class:: classref-method
  571. void **update_gizmos** **(** **)**
  572. Updates all the :ref:`Node3DGizmo<class_Node3DGizmo>`\ s attached to this node.
  573. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  574. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  575. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  576. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  577. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  578. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  579. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`