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:
committed by
Rémi Verschelde
parent
b9e022302a
commit
f9b488508c
@@ -345,3 +345,12 @@ func test():
|
||||
prints(x and true)
|
||||
prints(x or false)
|
||||
prints(x or true)
|
||||
|
||||
# TYPE_PACKED_VECTOR4_ARRAY
|
||||
x = PackedVector4Array([Vector4.ONE])
|
||||
prints("TYPE_PACKED_VECTOR4_ARRAY")
|
||||
prints(not x)
|
||||
prints(x and false)
|
||||
prints(x and true)
|
||||
prints(x or false)
|
||||
prints(x or true)
|
||||
|
||||
@@ -227,3 +227,9 @@ false
|
||||
true
|
||||
true
|
||||
true
|
||||
TYPE_PACKED_VECTOR4_ARRAY
|
||||
false
|
||||
false
|
||||
true
|
||||
true
|
||||
true
|
||||
|
||||
Reference in New Issue
Block a user