summaryrefslogtreecommitdiffstats
path: root/doc/classes/PackedVector2Array.xml
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2022-07-12 19:26:10 +0200
committerHugo Locurcio <hugo.locurcio@hugo.pro>2023-06-15 07:50:54 +0200
commit84a3fd9daa8893661867dade7003c761ab188977 (patch)
tree8f24e19f63d02e9be00eec96093964c83b9c6d6f /doc/classes/PackedVector2Array.xml
parent33957aee69683cf1f542a8622e5a9efd23070f1c (diff)
downloadredot-engine-84a3fd9daa8893661867dade7003c761ab188977.tar.gz
Document initializing PackedVectorArray/PackedColorArray correctly
Diffstat (limited to 'doc/classes/PackedVector2Array.xml')
-rw-r--r--doc/classes/PackedVector2Array.xml4
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/classes/PackedVector2Array.xml b/doc/classes/PackedVector2Array.xml
index 0f74e0d2e5..a5a5d2f2df 100644
--- a/doc/classes/PackedVector2Array.xml
+++ b/doc/classes/PackedVector2Array.xml
@@ -28,6 +28,10 @@
<param index="0" name="from" type="Array" />
<description>
Constructs a new [PackedVector2Array]. Optionally, you can pass in a generic [Array] that will be converted.
+ [b]Note:[/b] When initializing a [PackedVector2Array] with elements, it must be initialized with an [Array] of [Vector2] values:
+ [codeblock]
+ var array = PackedVector2Array([Vector2(12, 34), Vector2(56, 78)])
+ [/codeblock]
</description>
</constructor>
</constructors>