diff options
author | Matheus Lima Cunha <matheus.limacunha@hotmail.com> | 2021-02-25 11:10:39 -0300 |
---|---|---|
committer | Matheus Lima Cunha <matheus.limacunha@hotmail.com> | 2021-04-21 11:33:53 -0300 |
commit | efd27a63c138ceef89d4ed2586651ea61898f5c7 (patch) | |
tree | d2e0b2327d2786e4b8d8d941cd3358248cbe09d1 /doc/classes/PackedByteArray.xml | |
parent | e271dba9cb0b52698c23f5d61f3b8e72f2b7d29d (diff) | |
download | redot-engine-efd27a63c138ceef89d4ed2586651ea61898f5c7.tar.gz |
Add fill method to Arrays and PackedArrays
Diffstat (limited to 'doc/classes/PackedByteArray.xml')
-rw-r--r-- | doc/classes/PackedByteArray.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/classes/PackedByteArray.xml b/doc/classes/PackedByteArray.xml index 24178c3ff6..0652cf0aa1 100644 --- a/doc/classes/PackedByteArray.xml +++ b/doc/classes/PackedByteArray.xml @@ -322,6 +322,15 @@ <description> </description> </method> + <method name="fill"> + <return type="void"> + </return> + <argument index="0" name="value" type="int"> + </argument> + <description> + Assigns the given value to all elements in the array. This can typically be used together with [method resize] to create an array with a given size and initialized elements. + </description> + </method> <method name="get_string_from_ascii" qualifiers="const"> <return type="String"> </return> |