"Sync classes reference template with current code base"
This commit is contained in:
parent
657a46c434
commit
a415996f79
1 changed files with 47 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" ?>
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
<doc version="2.0.beta.custom_build" name="Engine Types">
|
<doc version="2.0.rc1.custom_build" name="Engine Types">
|
||||||
<class name="@GDScript" category="Core">
|
<class name="@GDScript" category="Core">
|
||||||
<brief_description>
|
<brief_description>
|
||||||
Built-in GDScript functions.
|
Built-in GDScript functions.
|
||||||
|
@ -621,6 +621,32 @@
|
||||||
<description>
|
<description>
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
|
<method name="preload">
|
||||||
|
<return type="Resource">
|
||||||
|
</return>
|
||||||
|
<argument index="0" name="path" type="String">
|
||||||
|
</argument>
|
||||||
|
<description>
|
||||||
|
</description>
|
||||||
|
</method>
|
||||||
|
<method name="yield">
|
||||||
|
<return type="Nil">
|
||||||
|
</return>
|
||||||
|
<argument index="0" name="object" type="Object">
|
||||||
|
</argument>
|
||||||
|
<argument index="1" name="signal" type="String">
|
||||||
|
</argument>
|
||||||
|
<description>
|
||||||
|
</description>
|
||||||
|
</method>
|
||||||
|
<method name="assert">
|
||||||
|
<return type="Nil">
|
||||||
|
</return>
|
||||||
|
<argument index="0" name="condition" type="bool">
|
||||||
|
</argument>
|
||||||
|
<description>
|
||||||
|
</description>
|
||||||
|
</method>
|
||||||
</methods>
|
</methods>
|
||||||
<constants>
|
<constants>
|
||||||
<constant name="PI" value="3.141593">
|
<constant name="PI" value="3.141593">
|
||||||
|
@ -12127,6 +12153,16 @@ This approximation makes straight segments between each point, then subdivides t
|
||||||
</signals>
|
</signals>
|
||||||
<constants>
|
<constants>
|
||||||
</constants>
|
</constants>
|
||||||
|
<theme_items>
|
||||||
|
<theme_item name="more" type="Texture">
|
||||||
|
</theme_item>
|
||||||
|
<theme_item name="reset" type="Texture">
|
||||||
|
</theme_item>
|
||||||
|
<theme_item name="minus" type="Texture">
|
||||||
|
</theme_item>
|
||||||
|
<theme_item name="bg" type="StyleBox">
|
||||||
|
</theme_item>
|
||||||
|
</theme_items>
|
||||||
</class>
|
</class>
|
||||||
<class name="GraphNode" inherits="Container" category="Core">
|
<class name="GraphNode" inherits="Container" category="Core">
|
||||||
<brief_description>
|
<brief_description>
|
||||||
|
@ -14080,7 +14116,7 @@ verify_host will check the SSL identity of the host if set to true.
|
||||||
</constant>
|
</constant>
|
||||||
</constants>
|
</constants>
|
||||||
</class>
|
</class>
|
||||||
<class name="InputEventJoyButton" category="Built-In Types">
|
<class name="InputEventJoystickButton" category="Built-In Types">
|
||||||
<brief_description>
|
<brief_description>
|
||||||
</brief_description>
|
</brief_description>
|
||||||
<description>
|
<description>
|
||||||
|
@ -14166,7 +14202,7 @@ verify_host will check the SSL identity of the host if set to true.
|
||||||
</constant>
|
</constant>
|
||||||
</constants>
|
</constants>
|
||||||
</class>
|
</class>
|
||||||
<class name="InputEventJoyMotion" category="Built-In Types">
|
<class name="InputEventJoystickMotion" category="Built-In Types">
|
||||||
<brief_description>
|
<brief_description>
|
||||||
</brief_description>
|
</brief_description>
|
||||||
<description>
|
<description>
|
||||||
|
@ -27503,6 +27539,14 @@ This method controls whether the position between two cached points is interpola
|
||||||
Returns a captured group. A captured group is the part of a string that matches a part of the pattern delimited by parentheses (unless they are non-capturing parentheses [i](?:)[/i]).
|
Returns a captured group. A captured group is the part of a string that matches a part of the pattern delimited by parentheses (unless they are non-capturing parentheses [i](?:)[/i]).
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
|
<method name="get_capture_start" qualifiers="const">
|
||||||
|
<return type="int">
|
||||||
|
</return>
|
||||||
|
<argument index="0" name="capture" type="int">
|
||||||
|
</argument>
|
||||||
|
<description>
|
||||||
|
</description>
|
||||||
|
</method>
|
||||||
<method name="get_captures" qualifiers="const">
|
<method name="get_captures" qualifiers="const">
|
||||||
<return type="StringArray">
|
<return type="StringArray">
|
||||||
</return>
|
</return>
|
||||||
|
|
Loading…
Reference in a new issue