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

@@ -49,24 +49,32 @@ Method Descriptions
Calls the referenced function previously set by :ref:`set_function<class_FuncRef_method_set_function>` or :ref:`@GDScript.funcref<class_@GDScript_method_funcref>`.
----
.. _class_FuncRef_method_call_funcv:
- :ref:`Variant<class_Variant>` **call_funcv** **(** :ref:`Array<class_Array>` arg_array **)**
Calls the referenced function previously set by :ref:`set_function<class_FuncRef_method_set_function>` or :ref:`@GDScript.funcref<class_@GDScript_method_funcref>`. Contrarily to :ref:`call_func<class_FuncRef_method_call_func>`, this method does not support a variable number of arguments but expects all parameters to be passed via a single :ref:`Array<class_Array>`.
----
.. _class_FuncRef_method_is_valid:
- :ref:`bool<class_bool>` **is_valid** **(** **)** const
Returns whether the object still exists and has the function assigned.
----
.. _class_FuncRef_method_set_function:
- void **set_function** **(** :ref:`String<class_String>` name **)**
The name of the referenced function to call on the object, without parentheses or any parameters.
----
.. _class_FuncRef_method_set_instance:
- void **set_instance** **(** :ref:`Object<class_Object>` instance **)**