diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2024-08-21 19:26:21 -0700 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2024-09-26 13:00:17 -0700 |
commit | cc9f2b58a0b928ce1a8f30b855ace1e18d0049fc (patch) | |
tree | fec5aa38b5c9edc445b4e818d69ee7d9477b1bdc /doc/classes/PackedVector4Array.xml | |
parent | 506d6e427a4eecfc1e5e5ee1180019a876119701 (diff) | |
download | redot-engine-cc9f2b58a0b928ce1a8f30b855ace1e18d0049fc.tar.gz |
Bind Array get and set functions
Diffstat (limited to 'doc/classes/PackedVector4Array.xml')
-rw-r--r-- | doc/classes/PackedVector4Array.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/classes/PackedVector4Array.xml b/doc/classes/PackedVector4Array.xml index fd0cfeb74b..6dbfc7413d 100644 --- a/doc/classes/PackedVector4Array.xml +++ b/doc/classes/PackedVector4Array.xml @@ -96,6 +96,13 @@ [b]Note:[/b] Vectors with [constant @GDScript.NAN] elements don't behave the same as other vectors. Therefore, the results from this method may not be accurate if NaNs are included. </description> </method> + <method name="get" qualifiers="const"> + <return type="Vector4" /> + <param index="0" name="index" type="int" /> + <description> + Returns the [Vector4] at the given [param index] in the array. This is the same as using the [code][][/code] operator ([code]array[index][/code]). + </description> + </method> <method name="has" qualifiers="const"> <return type="bool" /> <param index="0" name="value" type="Vector4" /> |