mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 09:16:35 +08:00
Explain how to use Expression inputs
This commit is contained in:
parent
c21ca98e4c
commit
08ea2aedd2
@ -39,6 +39,7 @@
|
|||||||
</argument>
|
</argument>
|
||||||
<description>
|
<description>
|
||||||
Executes the expression that was previously parsed by [method parse] and returns the result. Before you use the returned object, you should check if the method failed by calling [method has_execute_failed].
|
Executes the expression that was previously parsed by [method parse] and returns the result. Before you use the returned object, you should check if the method failed by calling [method has_execute_failed].
|
||||||
|
If you defined input variables in [method parse], you can specify their values in the inputs array, in the same order.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="get_error_text" qualifiers="const">
|
<method name="get_error_text" qualifiers="const">
|
||||||
@ -64,6 +65,7 @@
|
|||||||
</argument>
|
</argument>
|
||||||
<description>
|
<description>
|
||||||
Parses the expression and returns a [enum @GlobalScope.Error].
|
Parses the expression and returns a [enum @GlobalScope.Error].
|
||||||
|
You can optionally specify names of variables that may appear in the expression with [code]input_names[/code], so that you can bind them when it gets executed.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
</methods>
|
</methods>
|
||||||
|
Loading…
Reference in New Issue
Block a user