summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp/variant
diff options
context:
space:
mode:
authorAaron Franke <arnfranke@yahoo.com>2024-08-10 21:16:43 -0700
committerAaron Franke <arnfranke@yahoo.com>2024-08-10 21:21:13 -0700
commit92e6ea7303f64533fb987451d46726d03a686545 (patch)
tree64fd42a3602862869949256d6fcc61d4c98ff6e2 /include/godot_cpp/variant
parent11773e52b0c66b86a64a4e17b41714bcd3e12813 (diff)
downloadredot-cpp-92e6ea7303f64533fb987451d46726d03a686545.tar.gz
Fix missing type info for PackedVector4Array
Diffstat (limited to 'include/godot_cpp/variant')
-rw-r--r--include/godot_cpp/variant/typed_array.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/godot_cpp/variant/typed_array.hpp b/include/godot_cpp/variant/typed_array.hpp
index ce20139..36bbcc9 100644
--- a/include/godot_cpp/variant/typed_array.hpp
+++ b/include/godot_cpp/variant/typed_array.hpp
@@ -130,6 +130,7 @@ MAKE_TYPED_ARRAY(PackedFloat64Array, Variant::PACKED_FLOAT64_ARRAY)
MAKE_TYPED_ARRAY(PackedStringArray, Variant::PACKED_STRING_ARRAY)
MAKE_TYPED_ARRAY(PackedVector2Array, Variant::PACKED_VECTOR2_ARRAY)
MAKE_TYPED_ARRAY(PackedVector3Array, Variant::PACKED_VECTOR3_ARRAY)
+MAKE_TYPED_ARRAY(PackedVector4Array, Variant::PACKED_VECTOR4_ARRAY)
MAKE_TYPED_ARRAY(PackedColorArray, Variant::PACKED_COLOR_ARRAY)
// If the IPAddress struct is added to godot-cpp, the following could also be added:
//MAKE_TYPED_ARRAY(IPAddress, Variant::STRING)