Sync classref with current source

This commit is contained in:
Rémi Verschelde
2019-11-22 09:22:56 +01:00
parent b842f77aad
commit 42790f850d
15 changed files with 184 additions and 32 deletions

View File

@@ -36,6 +36,8 @@ Properties
+---------------------------------------------+-------------------------------------------------------------------+---+
| :ref:`PauseMode<enum_Node_PauseMode>` | :ref:`pause_mode<class_Node_property_pause_mode>` | 0 |
+---------------------------------------------+-------------------------------------------------------------------+---+
| :ref:`int<class_int>` | :ref:`process_priority<class_Node_property_process_priority>` | 0 |
+---------------------------------------------+-------------------------------------------------------------------+---+
Methods
-------
@@ -199,8 +201,6 @@ Methods
+-----------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| void | :ref:`set_process_internal<class_Node_method_set_process_internal>` **(** :ref:`bool<class_bool>` enable **)** |
+-----------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| void | :ref:`set_process_priority<class_Node_method_set_process_priority>` **(** :ref:`int<class_int>` priority **)** |
+-----------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| void | :ref:`set_process_unhandled_input<class_Node_method_set_process_unhandled_input>` **(** :ref:`bool<class_bool>` enable **)** |
+-----------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| void | :ref:`set_process_unhandled_key_input<class_Node_method_set_process_unhandled_key_input>` **(** :ref:`bool<class_bool>` enable **)** |
@@ -558,6 +558,22 @@ The node owner. A node can have any other node as owner (as long as it is a vali
Pause mode. How the node will behave if the :ref:`SceneTree<class_SceneTree>` is paused.
----
.. _class_Node_property_process_priority:
- :ref:`int<class_int>` **process_priority**
+-----------+-----------------------------+
| *Default* | 0 |
+-----------+-----------------------------+
| *Setter* | set_process_priority(value) |
+-----------+-----------------------------+
| *Getter* | get_process_priority() |
+-----------+-----------------------------+
The node's priority in the execution order of the enabled processing callbacks (i.e. :ref:`NOTIFICATION_PROCESS<class_Node_constant_NOTIFICATION_PROCESS>`, :ref:`NOTIFICATION_PHYSICS_PROCESS<class_Node_constant_NOTIFICATION_PHYSICS_PROCESS>` and their internal counterparts). Nodes with a higher process priority will have their processing callbacks executed first.
Method Descriptions
-------------------
@@ -1317,14 +1333,6 @@ Enables or disabled internal processing for this node. Internal processing happe
----
.. _class_Node_method_set_process_priority:
- void **set_process_priority** **(** :ref:`int<class_int>` priority **)**
Sets the node's priority in the execution order of the enabled processing callbacks (i.e. :ref:`NOTIFICATION_PROCESS<class_Node_constant_NOTIFICATION_PROCESS>`, :ref:`NOTIFICATION_PHYSICS_PROCESS<class_Node_constant_NOTIFICATION_PHYSICS_PROCESS>` and their internal counterparts). Nodes with a higher process priority will have their processing callbacks executed first.
----
.. _class_Node_method_set_process_unhandled_input:
- void **set_process_unhandled_input** **(** :ref:`bool<class_bool>` enable **)**