Attention: Here be dragons
This is the latest
(unstable) version of this documentation, which may document features
not available in or compatible with released stable versions of Godot.
Checking the stable version of the documentation...
PackedVector3Array¶
A packed array of Vector3s.
Description¶
An array specifically designed to hold Vector3. Packs data tightly, so it saves memory for large array sizes.
Примітка
There are notable differences when using this API with C#. See Відмінності API C# в GDScript for more information.
Constructors¶
PackedVector3Array ( PackedVector3Array from ) |
|
PackedVector3Array ( Array from ) |
Methods¶
void |
append_array ( PackedVector3Array array ) |
void |
clear ( ) |
duplicate ( ) |
|
void |
|
is_empty ( ) const |
|
void |
|
void |
reverse ( ) |
void |
|
size ( ) const |
|
void |
sort ( ) |
to_byte_array ( ) const |
Operators¶
operator != ( PackedVector3Array right ) |
|
operator * ( Transform3D right ) |
|
operator + ( PackedVector3Array right ) |
|
operator == ( PackedVector3Array right ) |
|
operator [] ( int index ) |
Constructor Descriptions¶
PackedVector3Array PackedVector3Array ( )
Constructs an empty PackedVector3Array.
PackedVector3Array PackedVector3Array ( PackedVector3Array from )
Constructs a PackedVector3Array as a copy of the given PackedVector3Array.
PackedVector3Array PackedVector3Array ( Array from )
Constructs a new PackedVector3Array. Optionally, you can pass in a generic