Clarify Array.erase for nonexistant element.

The docs specify that Array.remove does nothing if the index does not
exist. Array.erase does not have a similar phrase, so it's unclear if
erase will print an error, or silently do nothing.
This commit is contained in:
Ryan Roden-Corrent 2022-04-05 07:07:56 -04:00
parent 60f8df380d
commit f84e2db35e
No known key found for this signature in database
GPG Key ID: 435D8B10692555C9
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@
<return type="void" />
<argument index="0" name="value" type="Variant" />
<description>
Removes the first occurrence of a value from the array. To remove an element by index, use [method remove_at] instead.
Removes the first occurrence of a value from the array. If the value does not exist in the array, nothing happens. To remove an element by index, use [method remove_at] instead.
[b]Note:[/b] This method acts in-place and doesn't return a value.
[b]Note:[/b] On large arrays, this method will be slower if the removed element is close to the beginning of the array (index 0). This is because all elements placed after the removed element have to be reindexed.
</description>