Updated the internal documention for the GDScript class.
This commit is contained in:
parent
31e076d16a
commit
071b2ea4f2
@ -257,13 +257,14 @@
|
|||||||
<method name="lerp" >
|
<method name="lerp" >
|
||||||
<return type="float">
|
<return type="float">
|
||||||
</return>
|
</return>
|
||||||
<argument index="0" name="a" type="float">
|
<argument index="0" name="from" type="float">
|
||||||
</argument>
|
</argument>
|
||||||
<argument index="1" name="b" type="float">
|
<argument index="1" name="to" type="float">
|
||||||
</argument>
|
</argument>
|
||||||
<argument index="2" name="c" type="float">
|
<argument index="2" name="percent" type="float">
|
||||||
</argument>
|
</argument>
|
||||||
<description>
|
<description>
|
||||||
|
Linear interpolates between two values by a normalized value.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="dectime" >
|
<method name="dectime" >
|
||||||
@ -276,6 +277,7 @@
|
|||||||
<argument index="2" name="step" type="float">
|
<argument index="2" name="step" type="float">
|
||||||
</argument>
|
</argument>
|
||||||
<description>
|
<description>
|
||||||
|
Decreases time by a specified amount.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="randomize" >
|
<method name="randomize" >
|
||||||
@ -421,6 +423,7 @@
|
|||||||
<argument index="1" name="funcname" type="String">
|
<argument index="1" name="funcname" type="String">
|
||||||
</argument>
|
</argument>
|
||||||
<description>
|
<description>
|
||||||
|
Returns a reference to the specified function
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="convert" >
|
<method name="convert" >
|
||||||
@ -475,6 +478,7 @@
|
|||||||
<argument index="1" name="..." type="var">
|
<argument index="1" name="..." type="var">
|
||||||
</argument>
|
</argument>
|
||||||
<description>
|
<description>
|
||||||
|
Print one or more arguments to the console with a tab between each argument.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="printerr" >
|
<method name="printerr" >
|
||||||
@ -499,6 +503,24 @@
|
|||||||
Print one or more arguments to strings in the best way possible to console. No newline is added at the end.
|
Print one or more arguments to strings in the best way possible to console. No newline is added at the end.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
|
<method name="var2str" >
|
||||||
|
<return type="String">
|
||||||
|
</return>
|
||||||
|
<argument index="0" name="var" type="var">
|
||||||
|
</argument>
|
||||||
|
<description>
|
||||||
|
Converts the value of a variable to a String.
|
||||||
|
</description>
|
||||||
|
</method>
|
||||||
|
<method name="str2var:var" >
|
||||||
|
<return type="String">
|
||||||
|
</return>
|
||||||
|
<argument index="0" name="str" type="String">
|
||||||
|
</argument>
|
||||||
|
<description>
|
||||||
|
Converts the value of a String to a variable.
|
||||||
|
</description>
|
||||||
|
</method>
|
||||||
<method name="range" >
|
<method name="range" >
|
||||||
<return type="Array">
|
<return type="Array">
|
||||||
</return>
|
</return>
|
||||||
@ -544,6 +566,7 @@
|
|||||||
<argument index="0" name="var:var" type="var">
|
<argument index="0" name="var:var" type="var">
|
||||||
</argument>
|
</argument>
|
||||||
<description>
|
<description>
|
||||||
|
Hashes the variable passed and returns an integer.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="print_stack" >
|
<method name="print_stack" >
|
||||||
|
Loading…
Reference in New Issue
Block a user