PackedFloat32Array

A packed array of 32-bit floating-point values.

Description

An array specifically designed to hold 32-bit floating-point values (float). Packs data tightly, so it saves memory for large array sizes.

If you need to pack 64-bit floats tightly, see PackedFloat64Array.

Note

There are notable differences when using this API with C#. See C# API differences to GDScript for more information.

Constructors

PackedFloat32Array

PackedFloat32Array ( )

PackedFloat32Array

PackedFloat32Array ( PackedFloat32Array from )

PackedFloat32Array

PackedFloat32Array ( Array from )

Methods

bool

append ( float value )

void

append_array ( PackedFloat32Array array )

int

bsearch ( float value, bool before=true )

void

clear ( )

int

count ( float value ) const

PackedFloat32Array

duplicate ( )

void

fill ( float value )

int

find ( float value, int from=0 ) const

bool

has ( float value ) const

int

insert ( int at_index, float value )

bool

is_empty ( ) const

bool

push_back ( float value )

void

remove_at ( int index )

int

resize ( int new_size )

void

reverse ( )

int

rfind ( float value, int from=-1 ) const

void

set ( int index, float value )

int

size ( ) const

PackedFloat32Array

slice ( int begin, int end=2147483647 ) const

void

sort ( )

PackedByteArray

to_byte_array ( ) const

Operators

bool

operator != ( PackedFloat32Array right )

PackedFloat32Array

operator + ( PackedFloat32Array right )

bool

operator == ( PackedFloat32Array right )

float

operator [] ( int index )


Constructor Descriptions

PackedFloat32Array PackedFloat32Array ( )

Constructs an empty PackedFloat32Array.


PackedFloat32Array PackedFloat32Array ( PackedFloat32Array from )

Constructs a PackedFloat32Array as a copy of the given PackedFloat32Array.


PackedFloat32Array PackedFloat32Array ( Array from )

Constructs a new PackedFloat32Array. Optionally, you can pass in a generic Array that will be converted.


Method Descriptions

bool append ( float value )

Appends an element at the end of the array (alias of