Packable

Packable

Base interface for objects which can store their values as packed elements in an array.

See:
  • {PackableForInterpolation}
Source:

Members

<static> :Number

The number of elements used to pack the object into an array.

Methods

<static>

Stores the provided instance into the provided array.

Parameters:
Name Type Argument Default Description
value Object The value to pack.
array Array The array to pack into.
startingIndex Number <optional>
0 The index into the array at which to start packing the elements.
Throws:

<static>

Retrieves an instance from a packed array.

Parameters:
Name Type Argument Default Description
array Array The packed array.
startingIndex Number <optional>
0 The starting index of the element to be unpacked.
result Object <optional>
The object into which to store the result.
Throws:
DeveloperError : array is required.