summaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
authorAaron Franke <arnfranke@yahoo.com>2024-08-21 18:31:12 -0700
committerAaron Franke <arnfranke@yahoo.com>2024-08-22 21:02:48 -0700
commit10c3d1bc5f7f68bb4e260f32b9a8b529d23873ba (patch)
tree1ed5676899b06d245b446ee916c092b14c388a9d /test/src
parent19c83a8837738e5014cc35771820bcb8cb73a5ea (diff)
downloadredot-cpp-10c3d1bc5f7f68bb4e260f32b9a8b529d23873ba.tar.gz
Fix missing MAKE_TYPED_ARRAY_INFO for Packed*Arrays
Diffstat (limited to 'test/src')
-rw-r--r--test/src/example.cpp14
-rw-r--r--test/src/example.h1
2 files changed, 15 insertions, 0 deletions
diff --git a/test/src/example.cpp b/test/src/example.cpp
index a941889..84dc176 100644
--- a/test/src/example.cpp
+++ b/test/src/example.cpp
@@ -204,6 +204,7 @@ void Example::_bind_methods() {
ClassDB::bind_method(D_METHOD("test_str_utility"), &Example::test_str_utility);
ClassDB::bind_method(D_METHOD("test_string_is_forty_two"), &Example::test_string_is_forty_two);
ClassDB::bind_method(D_METHOD("test_string_resize"), &Example::test_string_resize);
+ ClassDB::bind_method(D_METHOD("test_typed_array_of_packed"), &Example::test_typed_array_of_packed);
ClassDB::bind_method(D_METHOD("test_vector_ops"), &Example::test_vector_ops);
ClassDB::bind_method(D_METHOD("test_vector_init_list"), &Example::test_vector_init_list);
@@ -424,6 +425,19 @@ String Example::test_string_resize(String p_string) const {
return p_string;
}
+TypedArray<PackedInt32Array> Example::test_typed_array_of_packed() const {
+ TypedArray<PackedInt32Array> arr;
+ PackedInt32Array packed_arr1;
+ packed_arr1.push_back(1);
+ packed_arr1.push_back(2);
+ arr.push_back(packed_arr1);
+ PackedInt32Array packed_arr2;
+ packed_arr2.push_back(3);
+ packed_arr2.push_back(4);
+ arr.push_back(packed_arr2);
+ return arr;
+}
+
int Example::test_vector_ops() const {
PackedInt32Array arr;
arr.push_back(10);
diff --git a/test/src/example.h b/test/src/example.h
index 7f3dfaa..59c907a 100644
--- a/test/src/example.h
+++ b/test/src/example.h
@@ -134,6 +134,7 @@ public:
String test_str_utility() const;
bool test_string_is_forty_two(const String &p_str) const;
String test_string_resize(String p_original) const;
+ TypedArray<PackedInt32Array> test_typed_array_of_packed() const;
int test_vector_ops() const;
int test_vector_init_list() const;