diff options
author | MewPurPur <mew.pur.pur@gmail.com> | 2023-11-09 16:17:18 +0200 |
---|---|---|
committer | MewPurPur <mew.pur.pur@gmail.com> | 2023-11-10 00:41:39 +0200 |
commit | 80b636069ae8a19e8e652c5f28cdb6d1e543cdb0 (patch) | |
tree | bf94d2dbfb8325920a12363ef356b2121020dbd1 /doc/classes/PackedInt32Array.xml | |
parent | b733901e9e650fc2f1a43627be2379f5ba200f8d (diff) | |
download | redot-engine-80b636069ae8a19e8e652c5f28cdb6d1e543cdb0.tar.gz |
Add performance note to Array.resize()
Diffstat (limited to 'doc/classes/PackedInt32Array.xml')
-rw-r--r-- | doc/classes/PackedInt32Array.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/PackedInt32Array.xml b/doc/classes/PackedInt32Array.xml index c70cadc2fe..e6396e2a93 100644 --- a/doc/classes/PackedInt32Array.xml +++ b/doc/classes/PackedInt32Array.xml @@ -128,7 +128,7 @@ <return type="int" /> <param index="0" name="new_size" type="int" /> <description> - Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. + Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one. </description> </method> <method name="reverse"> |