class_node.rst 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865
  1. .. Generated automatically by doc/tools/makerst.py in Godot's source tree.
  2. .. DO NOT EDIT THIS FILE, but the Node.xml source instead.
  3. .. The source is found in doc/classes or modules/<name>/doc_classes.
  4. .. _class_Node:
  5. Node
  6. ====
  7. **Inherits:** :ref:`Object<class_object>`
  8. **Inherited By:** :ref:`Viewport<class_viewport>`, :ref:`AudioStreamPlayer<class_audiostreamplayer>`, :ref:`EditorFileSystem<class_editorfilesystem>`, :ref:`CanvasLayer<class_canvaslayer>`, :ref:`Spatial<class_spatial>`, :ref:`AnimationPlayer<class_animationplayer>`, :ref:`EditorPlugin<class_editorplugin>`, :ref:`ResourcePreloader<class_resourcepreloader>`, :ref:`AnimationTreePlayer<class_animationtreeplayer>`, :ref:`WorldEnvironment<class_worldenvironment>`, :ref:`InstancePlaceholder<class_instanceplaceholder>`, :ref:`HTTPRequest<class_httprequest>`, :ref:`EditorInterface<class_editorinterface>`, :ref:`EditorResourcePreview<class_editorresourcepreview>`, :ref:`CanvasItem<class_canvasitem>`, :ref:`Timer<class_timer>`, :ref:`Tween<class_tween>`
  9. **Category:** Core
  10. Brief Description
  11. -----------------
  12. Base class for all *scene* objects.
  13. Member Functions
  14. ----------------
  15. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  16. | void | :ref:`_enter_tree<class_Node__enter_tree>` **(** **)** virtual |
  17. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  18. | void | :ref:`_exit_tree<class_Node__exit_tree>` **(** **)** virtual |
  19. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  20. | void | :ref:`_input<class_Node__input>` **(** :ref:`InputEvent<class_inputevent>` event **)** virtual |
  21. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  22. | void | :ref:`_physics_process<class_Node__physics_process>` **(** :ref:`float<class_float>` delta **)** virtual |
  23. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  24. | void | :ref:`_process<class_Node__process>` **(** :ref:`float<class_float>` delta **)** virtual |
  25. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  26. | void | :ref:`_ready<class_Node__ready>` **(** **)** virtual |
  27. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  28. | void | :ref:`_unhandled_input<class_Node__unhandled_input>` **(** :ref:`InputEvent<class_inputevent>` event **)** virtual |
  29. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  30. | void | :ref:`_unhandled_key_input<class_Node__unhandled_key_input>` **(** :ref:`InputEventKey<class_inputeventkey>` event **)** virtual |
  31. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  32. | void | :ref:`add_child<class_Node_add_child>` **(** :ref:`Node<class_node>` node, :ref:`bool<class_bool>` legible_unique_name=false **)** |
  33. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  34. | void | :ref:`add_child_below_node<class_Node_add_child_below_node>` **(** :ref:`Node<class_node>` node, :ref:`Node<class_node>` child_node, :ref:`bool<class_bool>` legible_unique_name=false **)** |
  35. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  36. | void | :ref:`add_to_group<class_Node_add_to_group>` **(** :ref:`String<class_string>` group, :ref:`bool<class_bool>` persistent=false **)** |
  37. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  38. | :ref:`bool<class_bool>` | :ref:`can_process<class_Node_can_process>` **(** **)** const |
  39. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  40. | :ref:`Node<class_node>` | :ref:`duplicate<class_Node_duplicate>` **(** :ref:`int<class_int>` flags=15 **)** const |
  41. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  42. | :ref:`Node<class_node>` | :ref:`find_node<class_Node_find_node>` **(** :ref:`String<class_string>` mask, :ref:`bool<class_bool>` recursive=true, :ref:`bool<class_bool>` owned=true **)** const |
  43. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  44. | :ref:`Node<class_node>` | :ref:`get_child<class_Node_get_child>` **(** :ref:`int<class_int>` idx **)** const |
  45. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  46. | :ref:`int<class_int>` | :ref:`get_child_count<class_Node_get_child_count>` **(** **)** const |
  47. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  48. | :ref:`Array<class_array>` | :ref:`get_children<class_Node_get_children>` **(** **)** const |
  49. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  50. | :ref:`Array<class_array>` | :ref:`get_groups<class_Node_get_groups>` **(** **)** const |
  51. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  52. | :ref:`int<class_int>` | :ref:`get_index<class_Node_get_index>` **(** **)** const |
  53. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  54. | :ref:`int<class_int>` | :ref:`get_network_master<class_Node_get_network_master>` **(** **)** const |
  55. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  56. | :ref:`Node<class_node>` | :ref:`get_node<class_Node_get_node>` **(** :ref:`NodePath<class_nodepath>` path **)** const |
  57. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  58. | :ref:`Array<class_array>` | :ref:`get_node_and_resource<class_Node_get_node_and_resource>` **(** :ref:`NodePath<class_nodepath>` path **)** |
  59. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  60. | :ref:`Node<class_node>` | :ref:`get_parent<class_Node_get_parent>` **(** **)** const |
  61. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  62. | :ref:`NodePath<class_nodepath>` | :ref:`get_path<class_Node_get_path>` **(** **)** const |
  63. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  64. | :ref:`NodePath<class_nodepath>` | :ref:`get_path_to<class_Node_get_path_to>` **(** :ref:`Node<class_node>` node **)** const |
  65. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  66. | :ref:`float<class_float>` | :ref:`get_physics_process_delta_time<class_Node_get_physics_process_delta_time>` **(** **)** const |
  67. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  68. | :ref:`int<class_int>` | :ref:`get_position_in_parent<class_Node_get_position_in_parent>` **(** **)** const |
  69. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  70. | :ref:`float<class_float>` | :ref:`get_process_delta_time<class_Node_get_process_delta_time>` **(** **)** const |
  71. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  72. | :ref:`bool<class_bool>` | :ref:`get_scene_instance_load_placeholder<class_Node_get_scene_instance_load_placeholder>` **(** **)** const |
  73. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  74. | :ref:`SceneTree<class_scenetree>` | :ref:`get_tree<class_Node_get_tree>` **(** **)** const |
  75. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  76. | :ref:`Viewport<class_viewport>` | :ref:`get_viewport<class_Node_get_viewport>` **(** **)** const |
  77. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  78. | :ref:`bool<class_bool>` | :ref:`has_node<class_Node_has_node>` **(** :ref:`NodePath<class_nodepath>` path **)** const |
  79. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  80. | :ref:`bool<class_bool>` | :ref:`has_node_and_resource<class_Node_has_node_and_resource>` **(** :ref:`NodePath<class_nodepath>` path **)** const |
  81. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  82. | :ref:`bool<class_bool>` | :ref:`is_a_parent_of<class_Node_is_a_parent_of>` **(** :ref:`Node<class_node>` node **)** const |
  83. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  84. | :ref:`bool<class_bool>` | :ref:`is_displayed_folded<class_Node_is_displayed_folded>` **(** **)** const |
  85. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  86. | :ref:`bool<class_bool>` | :ref:`is_greater_than<class_Node_is_greater_than>` **(** :ref:`Node<class_node>` node **)** const |
  87. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  88. | :ref:`bool<class_bool>` | :ref:`is_in_group<class_Node_is_in_group>` **(** :ref:`String<class_string>` group **)** const |
  89. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  90. | :ref:`bool<class_bool>` | :ref:`is_inside_tree<class_Node_is_inside_tree>` **(** **)** const |
  91. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  92. | :ref:`bool<class_bool>` | :ref:`is_network_master<class_Node_is_network_master>` **(** **)** const |
  93. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  94. | :ref:`bool<class_bool>` | :ref:`is_physics_processing<class_Node_is_physics_processing>` **(** **)** const |
  95. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  96. | :ref:`bool<class_bool>` | :ref:`is_physics_processing_internal<class_Node_is_physics_processing_internal>` **(** **)** const |
  97. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  98. | :ref:`bool<class_bool>` | :ref:`is_processing<class_Node_is_processing>` **(** **)** const |
  99. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  100. | :ref:`bool<class_bool>` | :ref:`is_processing_input<class_Node_is_processing_input>` **(** **)** const |
  101. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  102. | :ref:`bool<class_bool>` | :ref:`is_processing_internal<class_Node_is_processing_internal>` **(** **)** const |
  103. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  104. | :ref:`bool<class_bool>` | :ref:`is_processing_unhandled_input<class_Node_is_processing_unhandled_input>` **(** **)** const |
  105. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  106. | :ref:`bool<class_bool>` | :ref:`is_processing_unhandled_key_input<class_Node_is_processing_unhandled_key_input>` **(** **)** const |
  107. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  108. | void | :ref:`move_child<class_Node_move_child>` **(** :ref:`Node<class_node>` child_node, :ref:`int<class_int>` to_position **)** |
  109. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  110. | void | :ref:`print_stray_nodes<class_Node_print_stray_nodes>` **(** **)** |
  111. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  112. | void | :ref:`print_tree<class_Node_print_tree>` **(** **)** |
  113. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  114. | void | :ref:`print_tree_pretty<class_Node_print_tree_pretty>` **(** **)** |
  115. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  116. | void | :ref:`propagate_call<class_Node_propagate_call>` **(** :ref:`String<class_string>` method, :ref:`Array<class_array>` args=[ ], :ref:`bool<class_bool>` parent_first=false **)** |
  117. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  118. | void | :ref:`propagate_notification<class_Node_propagate_notification>` **(** :ref:`int<class_int>` what **)** |
  119. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  120. | void | :ref:`queue_free<class_Node_queue_free>` **(** **)** |
  121. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  122. | void | :ref:`raise<class_Node_raise>` **(** **)** |
  123. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  124. | void | :ref:`remove_and_skip<class_Node_remove_and_skip>` **(** **)** |
  125. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  126. | void | :ref:`remove_child<class_Node_remove_child>` **(** :ref:`Node<class_node>` node **)** |
  127. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  128. | void | :ref:`remove_from_group<class_Node_remove_from_group>` **(** :ref:`String<class_string>` group **)** |
  129. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  130. | void | :ref:`replace_by<class_Node_replace_by>` **(** :ref:`Node<class_node>` node, :ref:`bool<class_bool>` keep_data=false **)** |
  131. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  132. | void | :ref:`request_ready<class_Node_request_ready>` **(** **)** |
  133. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  134. | :ref:`Variant<class_variant>` | :ref:`rpc<class_Node_rpc>` **(** :ref:`String<class_string>` method **)** vararg |
  135. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  136. | void | :ref:`rpc_config<class_Node_rpc_config>` **(** :ref:`String<class_string>` method, :ref:`int<class_int>` mode **)** |
  137. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  138. | :ref:`Variant<class_variant>` | :ref:`rpc_id<class_Node_rpc_id>` **(** :ref:`int<class_int>` peer_id, :ref:`String<class_string>` method **)** vararg |
  139. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  140. | :ref:`Variant<class_variant>` | :ref:`rpc_unreliable<class_Node_rpc_unreliable>` **(** :ref:`String<class_string>` method **)** vararg |
  141. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  142. | :ref:`Variant<class_variant>` | :ref:`rpc_unreliable_id<class_Node_rpc_unreliable_id>` **(** :ref:`int<class_int>` peer_id, :ref:`String<class_string>` method **)** vararg |
  143. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  144. | void | :ref:`rset<class_Node_rset>` **(** :ref:`String<class_string>` property, :ref:`Variant<class_variant>` value **)** |
  145. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  146. | void | :ref:`rset_config<class_Node_rset_config>` **(** :ref:`String<class_string>` property, :ref:`int<class_int>` mode **)** |
  147. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  148. | void | :ref:`rset_id<class_Node_rset_id>` **(** :ref:`int<class_int>` peer_id, :ref:`String<class_string>` property, :ref:`Variant<class_variant>` value **)** |
  149. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  150. | void | :ref:`rset_unreliable<class_Node_rset_unreliable>` **(** :ref:`String<class_string>` property, :ref:`Variant<class_variant>` value **)** |
  151. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  152. | void | :ref:`rset_unreliable_id<class_Node_rset_unreliable_id>` **(** :ref:`int<class_int>` peer_id, :ref:`String<class_string>` property, :ref:`Variant<class_variant>` value **)** |
  153. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  154. | void | :ref:`set_display_folded<class_Node_set_display_folded>` **(** :ref:`bool<class_bool>` fold **)** |
  155. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  156. | void | :ref:`set_network_master<class_Node_set_network_master>` **(** :ref:`int<class_int>` id, :ref:`bool<class_bool>` recursive=true **)** |
  157. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  158. | void | :ref:`set_physics_process<class_Node_set_physics_process>` **(** :ref:`bool<class_bool>` enable **)** |
  159. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  160. | void | :ref:`set_physics_process_internal<class_Node_set_physics_process_internal>` **(** :ref:`bool<class_bool>` enable **)** |
  161. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  162. | void | :ref:`set_process<class_Node_set_process>` **(** :ref:`bool<class_bool>` enable **)** |
  163. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  164. | void | :ref:`set_process_input<class_Node_set_process_input>` **(** :ref:`bool<class_bool>` enable **)** |
  165. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  166. | void | :ref:`set_process_internal<class_Node_set_process_internal>` **(** :ref:`bool<class_bool>` enable **)** |
  167. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  168. | void | :ref:`set_process_unhandled_input<class_Node_set_process_unhandled_input>` **(** :ref:`bool<class_bool>` enable **)** |
  169. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  170. | void | :ref:`set_process_unhandled_key_input<class_Node_set_process_unhandled_key_input>` **(** :ref:`bool<class_bool>` enable **)** |
  171. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  172. | void | :ref:`set_scene_instance_load_placeholder<class_Node_set_scene_instance_load_placeholder>` **(** :ref:`bool<class_bool>` load_placeholder **)** |
  173. +------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  174. Signals
  175. -------
  176. .. _class_Node_renamed:
  177. - **renamed** **(** **)**
  178. Emitted when the node is renamed.
  179. .. _class_Node_tree_entered:
  180. - **tree_entered** **(** **)**
  181. Emitted when the node enters the tree.
  182. .. _class_Node_tree_exited:
  183. - **tree_exited** **(** **)**
  184. Emitted after the node exits the tree and is no longer active.
  185. .. _class_Node_tree_exiting:
  186. - **tree_exiting** **(** **)**
  187. Emitted when the node is still active but about to exit the tree. This is the right place for de-initialization (or a "destructor", if you will).
  188. Member Variables
  189. ----------------
  190. .. _class_Node_filename:
  191. - :ref:`String<class_string>` **filename** - When a scene is instanced from a file, its topmost node contains the filename from which it was loaded.
  192. .. _class_Node_name:
  193. - :ref:`String<class_string>` **name** - The name of the node. This name is unique among the siblings (other child nodes from the same parent). When set to an existing name, the node will be automatically renamed
  194. .. _class_Node_owner:
  195. - :ref:`Node<class_node>` **owner** - The node owner. A node can have any other node as owner (as long as it is a valid parent, grandparent, etc. ascending in the tree). When saving a node (using :ref:`PackedScene<class_packedscene>`) all the nodes it owns will be saved with it. This allows for the creation of complex :ref:`SceneTree<class_scenetree>`\ s, with instancing and subinstancing.
  196. .. _class_Node_pause_mode:
  197. - :ref:`PauseMode<enum_node_pausemode>` **pause_mode** - Pause mode. How the node will behave if the :ref:`SceneTree<class_scenetree>` is paused.
  198. Numeric Constants
  199. -----------------
  200. - **NOTIFICATION_ENTER_TREE** = **10** --- Notification received when the node enters a :ref:`SceneTree<class_scenetree>`.
  201. - **NOTIFICATION_EXIT_TREE** = **11** --- Notification received when the node is about to exit a :ref:`SceneTree<class_scenetree>`.
  202. - **NOTIFICATION_MOVED_IN_PARENT** = **12** --- Notification received when the node is moved in the parent.
  203. - **NOTIFICATION_READY** = **13** --- Notification received when the node is ready. See :ref:`_ready<class_Node__ready>`.
  204. - **NOTIFICATION_PAUSED** = **14** --- Notification received when the node is paused.
  205. - **NOTIFICATION_UNPAUSED** = **15** --- Notification received when the node is unpaused.
  206. - **NOTIFICATION_PHYSICS_PROCESS** = **16** --- Notification received every frame when the physics process flag is set (see :ref:`set_physics_process<class_Node_set_physics_process>`).
  207. - **NOTIFICATION_PROCESS** = **17** --- Notification received every frame when the process flag is set (see :ref:`set_process<class_Node_set_process>`).
  208. - **NOTIFICATION_PARENTED** = **18** --- Notification received when a node is set as a child of another node. Note that this doesn't mean that a node entered the Scene Tree.
  209. - **NOTIFICATION_UNPARENTED** = **19** --- Notification received when a node is unparented (parent removed it from the list of children).
  210. - **NOTIFICATION_INSTANCED** = **20** --- Notification received when the node is instanced.
  211. - **NOTIFICATION_DRAG_BEGIN** = **21** --- Notification received when a drag begins.
  212. - **NOTIFICATION_DRAG_END** = **22** --- Notification received when a drag ends.
  213. - **NOTIFICATION_PATH_CHANGED** = **23** --- Notification received when the node's :ref:`NodePath<class_nodepath>` changed.
  214. - **NOTIFICATION_TRANSLATION_CHANGED** = **24** --- Notification received when translations may have changed. Can be triggered by the user changing the locale. Can be used to respond to language changes, for example to change the UI strings on the fly. Useful when working with the built-in translation support, like :ref:`Object.tr<class_Object_tr>`.
  215. - **NOTIFICATION_INTERNAL_PROCESS** = **25** --- Notification received every frame when the internal process flag is set (see :ref:`set_process_internal<class_Node_set_process_internal>`).
  216. - **NOTIFICATION_INTERNAL_PHYSICS_PROCESS** = **26** --- Notification received every frame when the internal physics process flag is set (see :ref:`set_physics_process_internal<class_Node_set_physics_process_internal>`).
  217. Enums
  218. -----
  219. .. _enum_Node_PauseMode:
  220. enum **PauseMode**
  221. - **PAUSE_MODE_INHERIT** = **0** --- Inherits pause mode from the node's parent. For the root node, it is equivalent to PAUSE_MODE_STOP. Default.
  222. - **PAUSE_MODE_STOP** = **1** --- Stop processing when the :ref:`SceneTree<class_scenetree>` is paused.
  223. - **PAUSE_MODE_PROCESS** = **2** --- Continue to process regardless of the :ref:`SceneTree<class_scenetree>` pause state.
  224. .. _enum_Node_RPCMode:
  225. enum **RPCMode**
  226. - **RPC_MODE_DISABLED** = **0** --- Used with :ref:`rpc_config<class_Node_rpc_config>` or :ref:`rset_config<class_Node_rset_config>` to disable a method or property for all RPC calls, making it unavailable. Default for all methods.
  227. - **RPC_MODE_REMOTE** = **1** --- Used with :ref:`rpc_config<class_Node_rpc_config>` or :ref:`rset_config<class_Node_rset_config>` to set a method to be called or a property to be changed only on the remote end, not locally. Analogous to the ``remote`` keyword.
  228. - **RPC_MODE_SYNC** = **2** --- Used with :ref:`rpc_config<class_Node_rpc_config>` or :ref:`rset_config<class_Node_rset_config>` to set a method to be called or a property to be changed both on the remote end and locally. Analogous to the ``sync`` keyword.
  229. - **RPC_MODE_MASTER** = **3** --- Used with :ref:`rpc_config<class_Node_rpc_config>` or :ref:`rset_config<class_Node_rset_config>` to set a method to be called or a property to be changed only on the network master for this node. Analogous to the ``master`` keyword. See :ref:`set_network_master<class_Node_set_network_master>`.
  230. - **RPC_MODE_SLAVE** = **4** --- Used with :ref:`rpc_config<class_Node_rpc_config>` or :ref:`rset_config<class_Node_rset_config>` to set a method to be called or a property to be changed only on slaves for this node. Analogous to the ``slave`` keyword. See :ref:`set_network_master<class_Node_set_network_master>`.
  231. .. _enum_Node_DuplicateFlags:
  232. enum **DuplicateFlags**
  233. - **DUPLICATE_SIGNALS** = **1** --- Duplicate the node's signals.
  234. - **DUPLICATE_GROUPS** = **2** --- Duplicate the node's groups.
  235. - **DUPLICATE_SCRIPTS** = **4** --- Duplicate the node's scripts.
  236. - **DUPLICATE_USE_INSTANCING** = **8** --- Duplicate using instancing.
  237. Description
  238. -----------
  239. Nodes are Godot's building blocks. They can be assigned as the child of another node, resulting in a tree arrangement. A given node can contain any number of nodes as children with the requirement that all siblings (direct children of a node) should have unique names.
  240. A tree of nodes is called a *scene*. Scenes can be saved to the disk and then instanced into other scenes. This allows for very high flexibility in the architecture and data model of Godot projects. Nodes can also optionally be added to groups. This makes it possible to access a number of nodes from code (an "enemies" group, for example) to perform grouped actions.
  241. **Scene tree:** The :ref:`SceneTree<class_scenetree>` contains the active tree of nodes. When a node is added to the scene tree, it receives the NOTIFICATION_ENTER_TREE notification and its :ref:`_enter_tree<class_Node__enter_tree>` callback is triggered. Child nodes are always added *after* their parent node, i.e. the :ref:`_enter_tree<class_Node__enter_tree>` callback of a parent node will be triggered before its child's.
  242. Once all nodes have been added in the scene tree, they receive the NOTIFICATION_READY notification and their respective :ref:`_ready<class_Node__ready>` callbacks are triggered. For groups of nodes, the :ref:`_ready<class_Node__ready>` callback is called in reverse order, starting with the children and moving up to the parent nodes.
  243. This means that when adding a node to the scene tree, the following order will be used for the callbacks: :ref:`_enter_tree<class_Node__enter_tree>` of the parent, :ref:`_enter_tree<class_Node__enter_tree>` of the children, :ref:`_ready<class_Node__ready>` of the children and finally :ref:`_ready<class_Node__ready>` of the parent (recursively for the entire scene tree).
  244. **Processing:** Nodes can override the "process" state, so that they receive a callback on each frame requesting them to process (do something). Normal processing (callback :ref:`_process<class_Node__process>`, toggled with :ref:`set_process<class_Node_set_process>`) happens as fast as possible and is dependent on the frame rate, so the processing time *delta* is passed as an argument. Physics processing (callback :ref:`_physics_process<class_Node__physics_process>`, toggled with :ref:`set_physics_process<class_Node_set_physics_process>`) happens a fixed number of times per second (60 by default) and is useful for code related to the physics engine.
  245. Nodes can also process input events. When present, the :ref:`_input<class_Node__input>` function will be called for each input that the program receives. In many cases, this can be overkill (unless used for simple projects), and the :ref:`_unhandled_input<class_Node__unhandled_input>` function might be preferred; it is called when the input event was not handled by anyone else (typically, GUI :ref:`Control<class_control>` nodes), ensuring that the node only receives the events that were meant for it.
  246. To keep track of the scene hierarchy (especially when instancing scenes into other scenes), an "owner" can be set for the node with :ref:`set_owner<class_Node_set_owner>`. This keeps track of who instanced what. This is mostly useful when writing editors and tools, though.
  247. Finally, when a node is freed with :ref:`free<class_Node_free>` or :ref:`queue_free<class_Node_queue_free>`, it will also free all its children.
  248. **Groups:** Nodes can be added to as many groups as you want to be easy to manage, you could create groups like "enemies" or "collectables" for example, depending on your game. See :ref:`add_to_group<class_Node_add_to_group>`, :ref:`is_in_group<class_Node_is_in_group>` and :ref:`remove_from_group<class_Node_remove_from_group>`. You can then retrieve all nodes in these groups, iterate them and even call methods on groups via the methods on :ref:`SceneTree<class_scenetree>`.
  249. **Networking with nodes:** After connecting to a server (or making one, see :ref:`NetworkedMultiplayerENet<class_networkedmultiplayerenet>`) it is possible to use the built-in RPC (remote procedure call) system to communicate over the network. By calling :ref:`rpc<class_Node_rpc>` with a method name, it will be called locally and in all connected peers (peers = clients and the server that accepts connections). To identify which node receives the RPC call Godot will use its :ref:`NodePath<class_nodepath>` (make sure node names are the same on all peers). Also take a look at the high-level networking tutorial and corresponding demos.
  250. Member Function Description
  251. ---------------------------
  252. .. _class_Node__enter_tree:
  253. - void **_enter_tree** **(** **)** virtual
  254. Called when the node enters the :ref:`SceneTree<class_scenetree>` (e.g. upon instancing, scene changing, or after calling :ref:`add_child<class_Node_add_child>` in a script). If the node has children, its :ref:`_enter_tree<class_Node__enter_tree>` callback will be called first, and then that of the children.
  255. Corresponds to the NOTIFICATION_ENTER_TREE notification in :ref:`Object._notification<class_Object__notification>`.
  256. .. _class_Node__exit_tree:
  257. - void **_exit_tree** **(** **)** virtual
  258. Called when the node is about to leave the :ref:`SceneTree<class_scenetree>` (e.g. upon freeing, scene changing, or after calling :ref:`remove_child<class_Node_remove_child>` in a script). If the node has children, its :ref:`_exit_tree<class_Node__exit_tree>` callback will be called last, after all its children have left the tree.
  259. Corresponds to the NOTIFICATION_EXIT_TREE notification in :ref:`Object._notification<class_Object__notification>` and signal :ref:`tree_exiting<class_Node_tree_exiting>`. To get notified when the node has already left the active tree, connect to the :ref:`tree_exited<class_Node_tree_exited>`
  260. .. _class_Node__input:
  261. - void **_input** **(** :ref:`InputEvent<class_inputevent>` event **)** virtual
  262. Called when there is an input event. The input event propagates through the node tree until a node consumes it.
  263. It is only called if input processing is enabled, which is done automatically if this method is overridden, and can be toggled with :ref:`set_process_input<class_Node_set_process_input>`.
  264. To consume the input event and stop it propagating further to other nodes, :ref:`SceneTree.set_input_as_handled<class_SceneTree_set_input_as_handled>` can be called.
  265. For gameplay input, :ref:`_unhandled_input<class_Node__unhandled_input>` and :ref:`_unhandled_key_input<class_Node__unhandled_key_input>` are usually a better fit as they allow the GUI to intercept the events first.
  266. .. _class_Node__physics_process:
  267. - void **_physics_process** **(** :ref:`float<class_float>` delta **)** virtual
  268. Called during the physics processing step of the main loop. Physics processing means that the frame rate is synced to the physics, i.e. the ``delta`` variable should be constant.
  269. It is only called if physics processing is enabled, which is done automatically if this method is overridden, and can be toggled with :ref:`set_physics_process<class_Node_set_physics_process>`.
  270. Corresponds to the NOTIFICATION_PHYSICS_PROCESS notification in :ref:`Object._notification<class_Object__notification>`.
  271. .. _class_Node__process:
  272. - void **_process** **(** :ref:`float<class_float>` delta **)** virtual
  273. Called during the processing step of the main loop. Processing happens at every frame and as fast as possible, so the ``delta`` time since the previous frame is not constant.
  274. It is only called if processing is enabled, which is done automatically if this method is overridden, and can be toggled with :ref:`set_process<class_Node_set_process>`.
  275. Corresponds to the NOTIFICATION_PROCESS notification in :ref:`Object._notification<class_Object__notification>`.
  276. .. _class_Node__ready:
  277. - void **_ready** **(** **)** virtual
  278. Called when the node is "ready", i.e. when both the node and its children have entered the scene tree. If the node has children, their :ref:`_ready<class_Node__ready>` callbacks get triggered first, and the parent node will receive the ready notification afterwards.
  279. Corresponds to the NOTIFICATION_READY notification in :ref:`Object._notification<class_Object__notification>`. See also the ``onready`` keyword for variables.
  280. Usually used for initialization. For even earlier initialization, :ref:`Object._init<class_Object__init>` may be used. Also see :ref:`_enter_tree<class_Node__enter_tree>`.
  281. .. _class_Node__unhandled_input:
  282. - void **_unhandled_input** **(** :ref:`InputEvent<class_inputevent>` event **)** virtual
  283. Propagated to all nodes when the previous :ref:`InputEvent<class_inputevent>` is not consumed by any nodes.
  284. It is only called if unhandled input processing is enabled, which is done automatically if this method is overridden, and can be toggled with :ref:`set_process_unhandled_input<class_Node_set_process_unhandled_input>`.
  285. To consume the input event and stop it propagating further to other nodes, :ref:`SceneTree.set_input_as_handled<class_SceneTree_set_input_as_handled>` can be called.
  286. For gameplay input, this and :ref:`_unhandled_key_input<class_Node__unhandled_key_input>` are usually a better fit than :ref:`_input<class_Node__input>` as they allow the GUI to intercept the events first.
  287. .. _class_Node__unhandled_key_input:
  288. - void **_unhandled_key_input** **(** :ref:`InputEventKey<class_inputeventkey>` event **)** virtual
  289. Propagated to all nodes when the previous :ref:`InputEventKey<class_inputeventkey>` is not consumed by any nodes.
  290. It is only called if unhandled key input processing is enabled, which is done automatically if this method is overridden, and can be toggled with :ref:`set_process_unhandled_key_input<class_Node_set_process_unhandled_key_input>`.
  291. To consume the input event and stop it propagating further to other nodes, :ref:`SceneTree.set_input_as_handled<class_SceneTree_set_input_as_handled>` can be called.
  292. For gameplay input, this and :ref:`_unhandled_input<class_Node__unhandled_input>` are usually a better fit than :ref:`_input<class_Node__input>` as they allow the GUI to intercept the events first.
  293. .. _class_Node_add_child:
  294. - void **add_child** **(** :ref:`Node<class_node>` node, :ref:`bool<class_bool>` legible_unique_name=false **)**
  295. Adds a child node. Nodes can have any number of children, but every child must have a unique name. Child nodes are automatically deleted when the parent node is deleted, so an entire scene can be removed by deleting its topmost node.
  296. Setting "legible_unique_name" ``true`` creates child nodes with human-readable names, based on the name of the node being instanced instead of its type.
  297. .. _class_Node_add_child_below_node:
  298. - void **add_child_below_node** **(** :ref:`Node<class_node>` node, :ref:`Node<class_node>` child_node, :ref:`bool<class_bool>` legible_unique_name=false **)**
  299. Adds a child node. The child is placed below the given node in the list of children.
  300. Setting "legible_unique_name" ``true`` creates child nodes with human-readable names, based on the name of the node being instanced instead of its type.
  301. .. _class_Node_add_to_group:
  302. - void **add_to_group** **(** :ref:`String<class_string>` group, :ref:`bool<class_bool>` persistent=false **)**
  303. Adds the node to a group. Groups are helpers to name and organize a subset of nodes, for example "enemies" or "collectables". A node can be in any number of groups. Nodes can be assigned a group at any time, but will not be added until they are inside the scene tree (see :ref:`is_inside_tree<class_Node_is_inside_tree>`). See notes in the description, and the group methods in :ref:`SceneTree<class_scenetree>`.
  304. .. _class_Node_can_process:
  305. - :ref:`bool<class_bool>` **can_process** **(** **)** const
  306. Returns ``true`` if the node can process while the scene tree is paused (see :ref:`set_pause_mode<class_Node_set_pause_mode>`). Always returns ``true`` if the scene tree is not paused, and ``false`` if the node is not in the tree. FIXME: Why FAIL_COND?
  307. .. _class_Node_duplicate:
  308. - :ref:`Node<class_node>` **duplicate** **(** :ref:`int<class_int>` flags=15 **)** const
  309. Duplicates the node, returning a new node.
  310. You can fine-tune the behavior using the ``flags``. See DUPLICATE\_\* constants.
  311. .. _class_Node_find_node:
  312. - :ref:`Node<class_node>` **find_node** **(** :ref:`String<class_string>` mask, :ref:`bool<class_bool>` recursive=true, :ref:`bool<class_bool>` owned=true **)** const
  313. Finds a descendant of this node whose name matches ``mask`` as in :ref:`String.match<class_String_match>` (i.e. case sensitive, but '\*' matches zero or more characters and '?' matches any single character except '.'). Note that it does not match against the full path, just against individual node names.
  314. .. _class_Node_get_child:
  315. - :ref:`Node<class_node>` **get_child** **(** :ref:`int<class_int>` idx **)** const
  316. Returns a child node by its index (see :ref:`get_child_count<class_Node_get_child_count>`). This method is often used for iterating all children of a node.
  317. .. _class_Node_get_child_count:
  318. - :ref:`int<class_int>` **get_child_count** **(** **)** const
  319. Returns the number of child nodes.
  320. .. _class_Node_get_children:
  321. - :ref:`Array<class_array>` **get_children** **(** **)** const
  322. Returns an array of references to node's children.
  323. .. _class_Node_get_groups:
  324. - :ref:`Array<class_array>` **get_groups** **(** **)** const
  325. Returns an array listing the groups that the node is a member of.
  326. .. _class_Node_get_index:
  327. - :ref:`int<class_int>` **get_index** **(** **)** const
  328. Returns the node's index, i.e. its position among the siblings of its parent.
  329. .. _class_Node_get_network_master:
  330. - :ref:`int<class_int>` **get_network_master** **(** **)** const
  331. Returns the peer ID of the network master for this node. See :ref:`set_network_master<class_Node_set_network_master>`.
  332. .. _class_Node_get_node:
  333. - :ref:`Node<class_node>` **get_node** **(** :ref:`NodePath<class_nodepath>` path **)** const
  334. Fetches a node. The :ref:`NodePath<class_nodepath>` can be either a relative path (from the current node) or an absolute path (in the scene tree) to a node. If the path does not exist, a ``null instance`` is returned and attempts to access it will result in an "Attempt to call <method> on a null instance." error.
  335. Note: fetching absolute paths only works when the node is inside the scene tree (see :ref:`is_inside_tree<class_Node_is_inside_tree>`).
  336. *Example:* Assume your current node is Character and the following tree:
  337. ::
  338. /root
  339. /root/Character
  340. /root/Character/Sword
  341. /root/Character/Backpack/Dagger
  342. /root/MyGame
  343. /root/Swamp/Alligator
  344. /root/Swamp/Mosquito
  345. /root/Swamp/Goblin
  346. Possible paths are:
  347. ::
  348. get_node("Sword")
  349. get_node("Backpack/Dagger")
  350. get_node("../Swamp/Alligator")
  351. get_node("/root/MyGame")
  352. .. _class_Node_get_node_and_resource:
  353. - :ref:`Array<class_array>` **get_node_and_resource** **(** :ref:`NodePath<class_nodepath>` path **)**
  354. .. _class_Node_get_parent:
  355. - :ref:`Node<class_node>` **get_parent** **(** **)** const
  356. Returns the parent node of the current node, or an empty ``Node`` if the node lacks a parent.
  357. .. _class_Node_get_path:
  358. - :ref:`NodePath<class_nodepath>` **get_path** **(** **)** const
  359. Returns the absolute path of the current node. This only works if the current node is inside the scene tree (see :ref:`is_inside_tree<class_Node_is_inside_tree>`).
  360. .. _class_Node_get_path_to:
  361. - :ref:`NodePath<class_nodepath>` **get_path_to** **(** :ref:`Node<class_node>` node **)** const
  362. Returns the relative :ref:`NodePath<class_nodepath>` from this node to the specified ``node``. Both nodes must be in the same scene or the function will fail.
  363. .. _class_Node_get_physics_process_delta_time:
  364. - :ref:`float<class_float>` **get_physics_process_delta_time** **(** **)** const
  365. Returns the time elapsed since the last physics-bound frame (see :ref:`_physics_process<class_Node__physics_process>`). This is always a constant value in physics processing unless the frames per second is changed in :ref:`OS<class_os>`.
  366. .. _class_Node_get_position_in_parent:
  367. - :ref:`int<class_int>` **get_position_in_parent** **(** **)** const
  368. Returns the node's order in the scene tree branch. For example, if called on the first child node the position is ``0``.
  369. .. _class_Node_get_process_delta_time:
  370. - :ref:`float<class_float>` **get_process_delta_time** **(** **)** const
  371. Returns the time elapsed (in seconds) since the last process callback. This value may vary from frame to frame.
  372. .. _class_Node_get_scene_instance_load_placeholder:
  373. - :ref:`bool<class_bool>` **get_scene_instance_load_placeholder** **(** **)** const
  374. Returns ``true`` if this is an instance load placeholder. See :ref:`InstancePlaceholder<class_instanceplaceholder>`.
  375. .. _class_Node_get_tree:
  376. - :ref:`SceneTree<class_scenetree>` **get_tree** **(** **)** const
  377. Returns the :ref:`SceneTree<class_scenetree>` that contains this node.
  378. .. _class_Node_get_viewport:
  379. - :ref:`Viewport<class_viewport>` **get_viewport** **(** **)** const
  380. Returns the node's :ref:`Viewport<class_viewport>`.
  381. .. _class_Node_has_node:
  382. - :ref:`bool<class_bool>` **has_node** **(** :ref:`NodePath<class_nodepath>` path **)** const
  383. Returns ``true`` if the node that the :ref:`NodePath<class_nodepath>` points to exists.
  384. .. _class_Node_has_node_and_resource:
  385. - :ref:`bool<class_bool>` **has_node_and_resource** **(** :ref:`NodePath<class_nodepath>` path **)** const
  386. .. _class_Node_is_a_parent_of:
  387. - :ref:`bool<class_bool>` **is_a_parent_of** **(** :ref:`Node<class_node>` node **)** const
  388. Returns ``true`` if the given node is a direct or indirect child of the current node.
  389. .. _class_Node_is_displayed_folded:
  390. - :ref:`bool<class_bool>` **is_displayed_folded** **(** **)** const
  391. Returns ``true`` if the node is folded (collapsed) in the Scene dock.
  392. .. _class_Node_is_greater_than:
  393. - :ref:`bool<class_bool>` **is_greater_than** **(** :ref:`Node<class_node>` node **)** const
  394. Returns ``true`` if the given node occurs later in the scene hierarchy than the current node.
  395. .. _class_Node_is_in_group:
  396. - :ref:`bool<class_bool>` **is_in_group** **(** :ref:`String<class_string>` group **)** const
  397. Returns ``true`` if this node is in the specified group. See notes in the description, and the group methods in :ref:`SceneTree<class_scenetree>`.
  398. .. _class_Node_is_inside_tree:
  399. - :ref:`bool<class_bool>` **is_inside_tree** **(** **)** const
  400. Returns ``true`` if this node is currently inside a :ref:`SceneTree<class_scenetree>`.
  401. .. _class_Node_is_network_master:
  402. - :ref:`bool<class_bool>` **is_network_master** **(** **)** const
  403. Returns ``true`` if the local system is the master of this node.
  404. .. _class_Node_is_physics_processing:
  405. - :ref:`bool<class_bool>` **is_physics_processing** **(** **)** const
  406. Returns ``true`` if physics processing is enabled (see :ref:`set_physics_process<class_Node_set_physics_process>`).
  407. .. _class_Node_is_physics_processing_internal:
  408. - :ref:`bool<class_bool>` **is_physics_processing_internal** **(** **)** const
  409. Returns ``true`` if internal physics processing is enabled (see :ref:`set_physics_process_internal<class_Node_set_physics_process_internal>`).
  410. .. _class_Node_is_processing:
  411. - :ref:`bool<class_bool>` **is_processing** **(** **)** const
  412. Returns ``true`` if processing is enabled (see :ref:`set_process<class_Node_set_process>`).
  413. .. _class_Node_is_processing_input:
  414. - :ref:`bool<class_bool>` **is_processing_input** **(** **)** const
  415. Returns ``true`` if the node is processing input (see :ref:`set_process_input<class_Node_set_process_input>`).
  416. .. _class_Node_is_processing_internal:
  417. - :ref:`bool<class_bool>` **is_processing_internal** **(** **)** const
  418. Returns ``true`` if internal processing is enabled (see :ref:`set_process_internal<class_Node_set_process_internal>`).
  419. .. _class_Node_is_processing_unhandled_input:
  420. - :ref:`bool<class_bool>` **is_processing_unhandled_input** **(** **)** const
  421. Returns ``true`` if the node is processing unhandled input (see :ref:`set_process_unhandled_input<class_Node_set_process_unhandled_input>`).
  422. .. _class_Node_is_processing_unhandled_key_input:
  423. - :ref:`bool<class_bool>` **is_processing_unhandled_key_input** **(** **)** const
  424. Returns ``true`` if the node is processing unhandled key input (see :ref:`set_process_unhandled_key_input<class_Node_set_process_unhandled_key_input>`).
  425. .. _class_Node_move_child:
  426. - void **move_child** **(** :ref:`Node<class_node>` child_node, :ref:`int<class_int>` to_position **)**
  427. Moves a child node to a different position (order) amongst the other children. Since calls, signals, etc are performed by tree order, changing the order of children nodes may be useful.
  428. .. _class_Node_print_stray_nodes:
  429. - void **print_stray_nodes** **(** **)**
  430. Prints all stray nodes (nodes outside the :ref:`SceneTree<class_scenetree>`). Used for debugging. Works only in debug builds.
  431. .. _class_Node_print_tree:
  432. - void **print_tree** **(** **)**
  433. Prints the tree to stdout. Used mainly for debugging purposes. This version displays the path relative to the current node, and is good for copy/pasting into the :ref:`get_node<class_Node_get_node>` function. Example output:
  434. ::
  435. TheGame
  436. TheGame/Menu
  437. TheGame/Menu/Label
  438. TheGame/Menu/Camera2D
  439. TheGame/SplashScreen
  440. TheGame/SplashScreen/Camera2D
  441. .. _class_Node_print_tree_pretty:
  442. - void **print_tree_pretty** **(** **)**
  443. Similar to :ref:`print_tree<class_Node_print_tree>`, this prints the tree to stdout. This version displays a more graphical representation similar to what is displayed in the scene inspector. It is useful for inspecting larger trees. Example output:
  444. ::
  445. ┖╴TheGame
  446. ┠╴Menu
  447. ┃ ┠╴Label
  448. ┃ ┖╴Camera2D
  449. ┖-SplashScreen
  450. ┖╴Camera2D
  451. .. _class_Node_propagate_call:
  452. - void **propagate_call** **(** :ref:`String<class_string>` method, :ref:`Array<class_array>` args=[ ], :ref:`bool<class_bool>` parent_first=false **)**
  453. Calls the given method (if present) with the arguments given in ``args`` on this node and recursively on all its children. If the parent_first argument is ``true`` then the method will be called on the current node first, then on all children. If it is ``false`` then the children will be called first.
  454. .. _class_Node_propagate_notification:
  455. - void **propagate_notification** **(** :ref:`int<class_int>` what **)**
  456. Notifies the current node and all its children recursively by calling notification() on all of them.
  457. .. _class_Node_queue_free:
  458. - void **queue_free** **(** **)**
  459. Queues a node for deletion at the end of the current frame. When deleted, all of its child nodes will be deleted as well. This method ensures it's safe to delete the node, contrary to :ref:`Object.free<class_Object_free>`. Use :ref:`Object.is_queued_for_deletion<class_Object_is_queued_for_deletion>` to check whether a node will be deleted at the end of the frame.
  460. .. _class_Node_raise:
  461. - void **raise** **(** **)**
  462. Moves this node to the top of the array of nodes of the parent node. This is often useful in GUIs (:ref:`Control<class_control>` nodes), because their order of drawing depends on their order in the tree.
  463. .. _class_Node_remove_and_skip:
  464. - void **remove_and_skip** **(** **)**
  465. Removes a node and sets all its children as children of the parent node (if it exists). All event subscriptions that pass by the removed node will be unsubscribed.
  466. .. _class_Node_remove_child:
  467. - void **remove_child** **(** :ref:`Node<class_node>` node **)**
  468. Removes a child node. The node is NOT deleted and must be deleted manually.
  469. .. _class_Node_remove_from_group:
  470. - void **remove_from_group** **(** :ref:`String<class_string>` group **)**
  471. Removes a node from a group. See notes in the description, and the group methods in :ref:`SceneTree<class_scenetree>`.
  472. .. _class_Node_replace_by:
  473. - void **replace_by** **(** :ref:`Node<class_node>` node, :ref:`bool<class_bool>` keep_data=false **)**
  474. Replaces a node in a scene by the given one. Subscriptions that pass through this node will be lost.
  475. .. _class_Node_request_ready:
  476. - void **request_ready** **(** **)**
  477. Requests that ``_ready`` be called again.
  478. .. _class_Node_rpc:
  479. - :ref:`Variant<class_variant>` **rpc** **(** :ref:`String<class_string>` method **)** vararg
  480. Sends a remote procedure call request for the given ``method`` to peers on the network (and locally), optionally sending all additional arguments as arguments to the method called by the RPC. The call request will only be received by nodes with the same :ref:`NodePath<class_nodepath>`, including the exact same node name. Behaviour depends on the RPC configuration for the given method, see :ref:`rpc_config<class_Node_rpc_config>`. Methods are not exposed to RPCs by default. Also see :ref:`rset<class_Node_rset>` and :ref:`rset_config<class_Node_rset_config>` for properties. Returns an empty :ref:`Variant<class_variant>`. Note that you can only safely use RPCs on clients after you received the ``connected_to_server`` signal from the :ref:`SceneTree<class_scenetree>`. You also need to keep track of the connection state, either by the :ref:`SceneTree<class_scenetree>` signals like ``server_disconnected`` or by checking ``SceneTree.network_peer.get_connection_status() == CONNECTION_CONNECTED``.
  481. .. _class_Node_rpc_config:
  482. - void **rpc_config** **(** :ref:`String<class_string>` method, :ref:`int<class_int>` mode **)**
  483. Changes the RPC mode for the given ``method`` to the given ``mode``. See enum RPCMode. An alternative is annotating methods and properties with the corresponding keywords (``remote``, ``sync``, ``master``, ``slave``). By default, methods are not exposed to networking (and RPCs). Also see :ref:`rset<class_Node_rset>` and :ref:`rset_config<class_Node_rset_config>` for properties.
  484. .. _class_Node_rpc_id:
  485. - :ref:`Variant<class_variant>` **rpc_id** **(** :ref:`int<class_int>` peer_id, :ref:`String<class_string>` method **)** vararg
  486. Sends a :ref:`rpc<class_Node_rpc>` to a specific peer identified by ``peer_id``. Returns an empty :ref:`Variant<class_variant>`.
  487. .. _class_Node_rpc_unreliable:
  488. - :ref:`Variant<class_variant>` **rpc_unreliable** **(** :ref:`String<class_string>` method **)** vararg
  489. Sends a :ref:`rpc<class_Node_rpc>` using an unreliable protocol. Returns an empty :ref:`Variant<class_variant>`.
  490. .. _class_Node_rpc_unreliable_id:
  491. - :ref:`Variant<class_variant>` **rpc_unreliable_id** **(** :ref:`int<class_int>` peer_id, :ref:`String<class_string>` method **)** vararg
  492. Sends a :ref:`rpc<class_Node_rpc>` to a specific peer identified by ``peer_id`` using an unreliable protocol. Returns an empty :ref:`Variant<class_variant>`.
  493. .. _class_Node_rset:
  494. - void **rset** **(** :ref:`String<class_string>` property, :ref:`Variant<class_variant>` value **)**
  495. Remotely changes a property's value on other peers (and locally). Behaviour depends on the RPC configuration for the given property, see :ref:`rset_config<class_Node_rset_config>`. Also see :ref:`rpc<class_Node_rpc>` for RPCs for methods, most information applies to this method as well.
  496. .. _class_Node_rset_config:
  497. - void **rset_config** **(** :ref:`String<class_string>` property, :ref:`int<class_int>` mode **)**
  498. Changes the RPC mode for the given ``property`` to the given ``mode``. See enum RPCMode. An alternative is annotating methods and properties with the corresponding keywords (``remote``, ``sync``, ``master``, ``slave``). By default, properties are not exposed to networking (and RPCs). Also see :ref:`rpc<class_Node_rpc>` and :ref:`rpc_config<class_Node_rpc_config>` for methods.
  499. .. _class_Node_rset_id:
  500. - void **rset_id** **(** :ref:`int<class_int>` peer_id, :ref:`String<class_string>` property, :ref:`Variant<class_variant>` value **)**
  501. Remotely changes the property's value on a specific peer identified by ``peer_id``.
  502. .. _class_Node_rset_unreliable:
  503. - void **rset_unreliable** **(** :ref:`String<class_string>` property, :ref:`Variant<class_variant>` value **)**
  504. Remotely changes the property's value on other peers (and locally) using an unreliable protocol.
  505. .. _class_Node_rset_unreliable_id:
  506. - void **rset_unreliable_id** **(** :ref:`int<class_int>` peer_id, :ref:`String<class_string>` property, :ref:`Variant<class_variant>` value **)**
  507. Remotely changes property's value on a specific peer identified by ``peer_id`` using an unreliable protocol.
  508. .. _class_Node_set_display_folded:
  509. - void **set_display_folded** **(** :ref:`bool<class_bool>` fold **)**
  510. Sets the folded state of the node in the Scene dock.
  511. .. _class_Node_set_network_master:
  512. - void **set_network_master** **(** :ref:`int<class_int>` id, :ref:`bool<class_bool>` recursive=true **)**
  513. Sets the node's network master to the peer with the given peer ID. The network master is the peer that has authority over the node on the network. Useful in conjunction with the ``master`` and ``slave`` keywords. Inherited from the parent node by default, which ultimately defaults to peer ID 1 (the server). If ``recursive``, the given peer is recursively set as the master for all children of this node.
  514. .. _class_Node_set_physics_process:
  515. - void **set_physics_process** **(** :ref:`bool<class_bool>` enable **)**
  516. Enables or disables physics (i.e. fixed framerate) processing. When a node is being processed, it will receive a NOTIFICATION_PHYSICS_PROCESS at a fixed (usually 60 fps, see :ref:`OS<class_os>` to change) interval (and the :ref:`_physics_process<class_Node__physics_process>` callback will be called if exists). Enabled automatically if :ref:`_physics_process<class_Node__physics_process>` is overridden. Any calls to this before :ref:`_ready<class_Node__ready>` will be ignored.
  517. .. _class_Node_set_physics_process_internal:
  518. - void **set_physics_process_internal** **(** :ref:`bool<class_bool>` enable **)**
  519. Enables or disables internal physics for this node. Internal physics processing happens in isolation from the normal :ref:`method<class_Node_method>`_physics_process`` calls and is used by some nodes internally to guarantee proper functioning even if the node is paused or physics processing is disabled for scripting (:ref:`set_physics_process<class_Node_set_physics_process>`). Only useful for advanced uses to manipulate built-in nodes behaviour.
  520. .. _class_Node_set_process:
  521. - void **set_process** **(** :ref:`bool<class_bool>` enable **)**
  522. Enables or disables processing. When a node is being processed, it will receive a NOTIFICATION_PROCESS on every drawn frame (and the :ref:`_process<class_Node__process>` callback will be called if exists). Enabled automatically if :ref:`_process<class_Node__process>` is overridden. Any calls to this before :ref:`_ready<class_Node__ready>` will be ignored.
  523. .. _class_Node_set_process_input:
  524. - void **set_process_input** **(** :ref:`bool<class_bool>` enable **)**
  525. Enables or disables input processing. This is not required for GUI controls! Enabled automatically if :ref:`_input<class_Node__input>` is overridden. Any calls to this before :ref:`_ready<class_Node__ready>` will be ignored.
  526. .. _class_Node_set_process_internal:
  527. - void **set_process_internal** **(** :ref:`bool<class_bool>` enable **)**
  528. Enables or disabled internal processing for this node. Internal processing happens in isolation from the normal :ref:`method<class_Node_method>`_process`` calls and is used by some nodes internally to guarantee proper functioning even if the node is paused or processing is disabled for scripting (:ref:`set_process<class_Node_set_process>`). Only useful for advanced uses to manipulate built-in nodes behaviour.
  529. .. _class_Node_set_process_unhandled_input:
  530. - void **set_process_unhandled_input** **(** :ref:`bool<class_bool>` enable **)**
  531. Enables unhandled input processing. This is not required for GUI controls! It enables the node to receive all input that was not previously handled (usually by a :ref:`Control<class_control>`). Enabled automatically if :ref:`_unhandled_input<class_Node__unhandled_input>` is overridden. Any calls to this before :ref:`_ready<class_Node__ready>` will be ignored.
  532. .. _class_Node_set_process_unhandled_key_input:
  533. - void **set_process_unhandled_key_input** **(** :ref:`bool<class_bool>` enable **)**
  534. Enables unhandled key input processing. Enabled automatically if :ref:`_unhandled_key_input<class_Node__unhandled_key_input>` is overridden. Any calls to this before :ref:`_ready<class_Node__ready>` will be ignored.
  535. .. _class_Node_set_scene_instance_load_placeholder:
  536. - void **set_scene_instance_load_placeholder** **(** :ref:`bool<class_bool>` load_placeholder **)**
  537. Sets whether this is an instance load placeholder. See :ref:`InstancePlaceholder<class_instanceplaceholder>`.