summaryrefslogtreecommitdiffstats
path: root/doc/classes/PackedVector2Array.xml
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-04-08 11:17:31 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-04-08 11:17:31 +0200
commitea961d3981b1dbea6aad1055dc2da648c64aeba3 (patch)
treec5c9d9b48043aa1bf429325f2ee37d832d8fe7ed /doc/classes/PackedVector2Array.xml
parente5b4ef8e9522e950033cbece39a31a4a76da19c1 (diff)
parentab8c9b678f94fd0a28f10953cf5cc872ecb701c2 (diff)
downloadredot-engine-ea961d3981b1dbea6aad1055dc2da648c64aeba3.tar.gz
Merge pull request #78257 from Calinou/doc-packed-arrays-vs-typed-arrays
Document the upsides and downsides of packed arrays versus typed arrays
Diffstat (limited to 'doc/classes/PackedVector2Array.xml')
-rw-r--r--doc/classes/PackedVector2Array.xml1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/classes/PackedVector2Array.xml b/doc/classes/PackedVector2Array.xml
index c73fea9114..b6766d7a99 100644
--- a/doc/classes/PackedVector2Array.xml
+++ b/doc/classes/PackedVector2Array.xml
@@ -5,6 +5,7 @@
</brief_description>
<description>
An array specifically designed to hold [Vector2]. 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. [PackedVector3Array] versus [code]Array[Vector2][/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.
</description>
<tutorials>
<link title="2D Navigation Astar Demo">https://godotengine.org/asset-library/asset/519</link>