summaryrefslogtreecommitdiffstats
path: root/doc/classes/PackedVector4Array.xml
diff options
context:
space:
mode:
authormechalynx <8427257+mechalynx@users.noreply.github.com>2024-11-22 07:12:56 +0200
committerGitHub <noreply@github.com>2024-11-22 07:12:56 +0200
commitacf351fa6aee36199f5f5c6665f48993622aa16f (patch)
tree3d971911ffb09a5404cb06fb6273b57ac9a9af6c /doc/classes/PackedVector4Array.xml
parent133cf62d26abd5dd75655e2b9336c9c253b5b007 (diff)
downloadredot-engine-acf351fa6aee36199f5f5c6665f48993622aa16f.tar.gz
Update PackedVector4Array description to include explanation shared by PackedArray classes
Diffstat (limited to 'doc/classes/PackedVector4Array.xml')
-rw-r--r--doc/classes/PackedVector4Array.xml1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/classes/PackedVector4Array.xml b/doc/classes/PackedVector4Array.xml
index 6dbfc7413d..7bebee79c7 100644
--- a/doc/classes/PackedVector4Array.xml
+++ b/doc/classes/PackedVector4Array.xml
@@ -5,6 +5,7 @@
</brief_description>
<description>
An array specifically designed to hold [Vector4]. Packs data tightly, so it saves memory for large array sizes.
+ [b]Differences between packed arrays, typed arrays, and untyped arrays:[/b] Packed arrays are generally faster to iterate on and modify compared to a typed array of the same type (e.g. [PackedVector4Array] versus [code]Array[Vector4][/code]). Also, packed arrays consume less memory. As a downside, packed arrays are less flexible as they don't offer as many convenience methods such as [method Array.map]. Typed arrays are in turn faster to iterate on and modify than untyped arrays.
[b]Note:[/b] Packed arrays are always passed by reference. To get a copy of an array that can be modified independently of the original array, use [method duplicate]. This is [i]not[/i] the case for built-in properties and methods. The returned packed array of these are a copies, and changing it will [i]not[/i] affect the original value. To update a built-in property you need to modify the returned array, and then assign it to the property again.
</description>
<tutorials>