doc: Sync classref with apparent Variant return type changes
Part of those seem bogus, methods like Array.back()/front() should return a Variant and not void.
This commit is contained in:
@ -20,6 +20,8 @@
|
||||
</description>
|
||||
</method>
|
||||
<method name="append">
|
||||
<return type="void">
|
||||
</return>
|
||||
<argument index="0" name="vector3" type="Vector3">
|
||||
</argument>
|
||||
<description>
|
||||
@ -27,6 +29,8 @@
|
||||
</description>
|
||||
</method>
|
||||
<method name="append_array">
|
||||
<return type="void">
|
||||
</return>
|
||||
<argument index="0" name="array" type="PackedVector3Array">
|
||||
</argument>
|
||||
<description>
|
||||
@ -52,11 +56,15 @@
|
||||
</description>
|
||||
</method>
|
||||
<method name="invert">
|
||||
<return type="void">
|
||||
</return>
|
||||
<description>
|
||||
Reverses the order of the elements in the array.
|
||||
</description>
|
||||
</method>
|
||||
<method name="push_back">
|
||||
<return type="void">
|
||||
</return>
|
||||
<argument index="0" name="vector3" type="Vector3">
|
||||
</argument>
|
||||
<description>
|
||||
@ -64,6 +72,8 @@
|
||||
</description>
|
||||
</method>
|
||||
<method name="remove">
|
||||
<return type="void">
|
||||
</return>
|
||||
<argument index="0" name="idx" type="int">
|
||||
</argument>
|
||||
<description>
|
||||
@ -71,6 +81,8 @@
|
||||
</description>
|
||||
</method>
|
||||
<method name="resize">
|
||||
<return type="void">
|
||||
</return>
|
||||
<argument index="0" name="idx" type="int">
|
||||
</argument>
|
||||
<description>
|
||||
@ -78,6 +90,8 @@
|
||||
</description>
|
||||
</method>
|
||||
<method name="set">
|
||||
<return type="void">
|
||||
</return>
|
||||
<argument index="0" name="idx" type="int">
|
||||
</argument>
|
||||
<argument index="1" name="vector3" type="Vector3">
|
||||
|
||||
Reference in New Issue
Block a user