add ability to pick random value from array

This commit is contained in:
Nonunknown
2022-10-15 09:43:16 -03:00
parent dc4b616596
commit 9f4dbf415d
4 changed files with 18 additions and 0 deletions

View File

@@ -429,6 +429,16 @@
Returns the minimum value contained in the array if all elements are of comparable types. If the elements can't be compared, [code]null[/code] is returned.
</description>
</method>
<method name="pick_random" qualifiers="const">
<return type="Variant" />
<description>
Returns a random value from the target array.
[codeblock]
var array: Array[int] = [1, 2, 3, 4]
print(array.pick_random()) # Prints either of the four numbers.
[/codeblock]
</description>
</method>
<method name="pop_at">
<return type="Variant" />
<param index="0" name="position" type="int" />