Sync classref with current source

This commit is contained in:
Rémi Verschelde
2019-10-29 12:48:46 +01:00
parent bbc6682099
commit a72184300f
449 changed files with 14004 additions and 232 deletions

View File

@@ -111,78 +111,104 @@ Method Descriptions
Return the node's title.
----
.. _class_VisualScriptCustomNode_method__get_category:
- :ref:`String<class_String>` **_get_category** **(** **)** virtual
Return the node's category.
----
.. _class_VisualScriptCustomNode_method__get_input_value_port_count:
- :ref:`int<class_int>` **_get_input_value_port_count** **(** **)** virtual
Return the count of input value ports.
----
.. _class_VisualScriptCustomNode_method__get_input_value_port_name:
- :ref:`String<class_String>` **_get_input_value_port_name** **(** :ref:`int<class_int>` idx **)** virtual
Return the specified input port's name.
----
.. _class_VisualScriptCustomNode_method__get_input_value_port_type:
- :ref:`int<class_int>` **_get_input_value_port_type** **(** :ref:`int<class_int>` idx **)** virtual
Return the specified input port's type. See the ``TYPE_*`` enum in :ref:`@GlobalScope<class_@GlobalScope>`.
----
.. _class_VisualScriptCustomNode_method__get_output_sequence_port_count:
- :ref:`int<class_int>` **_get_output_sequence_port_count** **(** **)** virtual
Return the amount of output **sequence** ports.
----
.. _class_VisualScriptCustomNode_method__get_output_sequence_port_text:
- :ref:`String<class_String>` **_get_output_sequence_port_text** **(** :ref:`int<class_int>` idx **)** virtual
Return the specified **sequence** output's name.
----
.. _class_VisualScriptCustomNode_method__get_output_value_port_count:
- :ref:`int<class_int>` **_get_output_value_port_count** **(** **)** virtual
Return the amount of output value ports.
----
.. _class_VisualScriptCustomNode_method__get_output_value_port_name:
- :ref:`String<class_String>` **_get_output_value_port_name** **(** :ref:`int<class_int>` idx **)** virtual
Return the specified output's name.
----
.. _class_VisualScriptCustomNode_method__get_output_value_port_type:
- :ref:`int<class_int>` **_get_output_value_port_type** **(** :ref:`int<class_int>` idx **)** virtual
Return the specified output's type. See the ``TYPE_*`` enum in :ref:`@GlobalScope<class_@GlobalScope>`.
----
.. _class_VisualScriptCustomNode_method__get_text:
- :ref:`String<class_String>` **_get_text** **(** **)** virtual
Return the custom node's text, which is shown right next to the input **sequence** port (if there is none, on the place that is usually taken by it).
----
.. _class_VisualScriptCustomNode_method__get_working_memory_size:
- :ref:`int<class_int>` **_get_working_memory_size** **(** **)** virtual
Return the size of the custom node's working memory. See :ref:`_step<class_VisualScriptCustomNode_method__step>` for more details.
----
.. _class_VisualScriptCustomNode_method__has_input_sequence_port:
- :ref:`bool<class_bool>` **_has_input_sequence_port** **(** **)** virtual
Return whether the custom node has an input **sequence** port.
----
.. _class_VisualScriptCustomNode_method__step:
- :ref:`Variant<class_Variant>` **_step** **(** :ref:`Array<class_Array>` inputs, :ref:`Array<class_Array>` outputs, :ref:`int<class_int>` start_mode, :ref:`Array<class_Array>` working_mem **)** virtual