mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
Add PackedVector4Array Variant type
Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
This commit is contained in:
parent
b9e022302a
commit
f9b488508c
79 changed files with 1037 additions and 89 deletions
|
|
@ -239,7 +239,8 @@ inline bool is_convertible_array(Variant::Type type) {
|
|||
return type == Variant::ARRAY ||
|
||||
type == Variant::PACKED_VECTOR2_ARRAY ||
|
||||
type == Variant::PACKED_VECTOR3_ARRAY ||
|
||||
type == Variant::PACKED_COLOR_ARRAY;
|
||||
type == Variant::PACKED_COLOR_ARRAY ||
|
||||
type == Variant::PACKED_VECTOR4_ARRAY;
|
||||
}
|
||||
|
||||
template <typename, typename = void>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue