Class reference

GLTFAccessor

Inherits Resource

Represents a glTF accessor.

Description

GLTFAccessor is a data structure representing a glTF accessor that would be found in the "accessors" array. A buffer is a blob of binary data. A buffer view is a slice of a buffer. An accessor is a typed interpretation of the data in a buffer view. Most custom data stored in glTF does not need accessors, only buffer views (see GLTFBufferView). Accessors are for more advanced use cases such as interleaved mesh data encoded for the GPU.

Properties

int accessor_type = 0

The glTF accessor type, as an enum.

int buffer_view = -1

The index of the buffer view this accessor is referencing. If -1, this accessor is not referencing any buffer view.

int byte_offset = 0

The offset relative to the start of the buffer view in bytes.

int component_type = 0

The glTF component type as an enum. See GLTFComponentType for possible values. Within the core glTF specification, a value of 5125 or "UNSIGNED_INT" must not be used for any accessor that is not referenced by mesh.primitive.indices.

int count = 0

The number of elements referenced by this accessor.

PackedFloat64Array max = PackedFloat64Array()

Maximum value of each component in this accessor.

PackedFloat64Array min = PackedFloat64Array()

Minimum value of each component in this accessor.

bool normalized = false

Specifies whether integer data values are normalized before usage.

int sparse_count = 0

Number of deviating accessor values stored in the sparse array.

int sparse_indices_buffer_view = 0

The index of the buffer view with sparse indices. The referenced buffer view MUST NOT have its target or byteStride properties defined. The buffer view and the optional byteOffset MUST be aligned to the componentType byte length.

int sparse_indices_byte_offset = 0

The offset relative to the start of the buffer view in bytes.

int sparse_indices_component_type = 0

The indices component data type as an enum. Possible values are 5121 for "UNSIGNED_BYTE", 5123 for "UNSIGNED_SHORT", and 5125 for "UNSIGNED_INT".

int sparse_values_buffer_view = 0

The index of the bufferView with sparse values. The referenced buffer view MUST NOT have its target or byteStride properties defined.

int sparse_values_byte_offset = 0

The offset relative to the start of the bufferView in bytes.

int type

Deprecated.

Use accessor_type instead.

The glTF accessor type, as an int. Possible values are 0 for "SCALAR", 1 for "VEC2", 2 for "VEC3", 3 for "VEC4", 4 for "MAT2", 5 for "MAT3", and 6 for "MAT4".

Constants

TYPE_SCALAR = 0

Enum: GLTFAccessorType

Accessor type "SCALAR". For the glTF object model, this can be used to map to a single float, int, or bool value, or a float array.

TYPE_VEC2 = 1

Enum: GLTFAccessorType

Accessor type "VEC2". For the glTF object model, this maps to "float2", represented in the glTF JSON as an array of two floats.

TYPE_VEC3 = 2

Enum: GLTFAccessorType

Accessor type "VEC3". For the glTF object model, this maps to "float3", represented in the glTF JSON as an array of three floats.

TYPE_VEC4 = 3

Enum: GLTFAccessorType

Accessor type "VEC4". For the glTF object model, this maps to "float4", represented in the glTF JSON as an array of four floats.

TYPE_MAT2 = 4

Enum: GLTFAccessorType

Accessor type "MAT2". For the glTF object model, this maps to "float2x2", represented in the glTF JSON as an array of four floats.

TYPE_MAT3 = 5

Enum: GLTFAccessorType

Accessor type "MAT3". For the glTF object model, this maps to "float3x3", represented in the glTF JSON as an array of nine floats.

TYPE_MAT4 = 6

Enum: GLTFAccessorType

Accessor type "MAT4". For the glTF object model, this maps to "float4x4", represented in the glTF JSON as an array of sixteen floats.

COMPONENT_TYPE_NONE = 0

Enum: GLTFComponentType

Component type "NONE". This is not a valid component type, and is used to indicate that the component type is not set.

COMPONENT_TYPE_SIGNED_BYTE = 5120

Enum: GLTFComponentType

Component type "BYTE". The value is 0x1400 which comes from OpenGL. This indicates data is stored in 1-byte or 8-bit signed integers. This is a core part of the glTF specification.

COMPONENT_TYPE_UNSIGNED_BYTE = 5121

Enum: GLTFComponentType

Component type "UNSIGNED_BYTE". The value is 0x1401 which comes from OpenGL. This indicates data is stored in 1-byte or 8-bit unsigned integers. This is a core part of the glTF specification.

COMPONENT_TYPE_SIGNED_SHORT = 5122

Enum: GLTFComponentType

Component type "SHORT". The value is 0x1402 which comes from OpenGL. This indicates data is stored in 2-byte or 16-bit signed integers. This is a core part of the glTF specification.

COMPONENT_TYPE_UNSIGNED_SHORT = 5123

Enum: GLTFComponentType

Component type "UNSIGNED_SHORT". The value is 0x1403 which comes from OpenGL. This indicates data is stored in 2-byte or 16-bit unsigned integers. This is a core part of the glTF specification.

COMPONENT_TYPE_SIGNED_INT = 5124

Enum: GLTFComponentType

Component type "INT". The value is 0x1404 which comes from OpenGL. This indicates data is stored in 4-byte or 32-bit signed integers. This is NOT a core part of the glTF specification, and may not be supported by all glTF importers. May be used by some extensions including KHR_interactivity.

COMPONENT_TYPE_UNSIGNED_INT = 5125

Enum: GLTFComponentType

Component type "UNSIGNED_INT". The value is 0x1405 which comes from OpenGL. This indicates data is stored in 4-byte or 32-bit unsigned integers. This is a core part of the glTF specification.

COMPONENT_TYPE_SINGLE_FLOAT = 5126

Enum: GLTFComponentType

Component type "FLOAT". The value is 0x1406 which comes from OpenGL. This indicates data is stored in 4-byte or 32-bit floating-point numbers. This is a core part of the glTF specification.

COMPONENT_TYPE_DOUBLE_FLOAT = 5130

Enum: GLTFComponentType

Component type "DOUBLE". The value is 0x140A which comes from OpenGL. This indicates data is stored in 8-byte or 64-bit floating-point numbers. This is NOT a core part of the glTF specification, and may not be supported by all glTF importers. May be used by some extensions including KHR_interactivity.

COMPONENT_TYPE_HALF_FLOAT = 5131

Enum: GLTFComponentType

Component type "HALF_FLOAT". The value is 0x140B which comes from OpenGL. This indicates data is stored in 2-byte or 16-bit floating-point numbers. This is NOT a core part of the glTF specification, and may not be supported by all glTF importers. May be used by some extensions including KHR_interactivity.

COMPONENT_TYPE_SIGNED_LONG = 5134

Enum: GLTFComponentType

Component type "LONG". The value is 0x140E which comes from OpenGL. This indicates data is stored in 8-byte or 64-bit signed integers. This is NOT a core part of the glTF specification, and may not be supported by all glTF importers. May be used by some extensions including KHR_interactivity.

COMPONENT_TYPE_UNSIGNED_LONG = 5135

Enum: GLTFComponentType

Component type "UNSIGNED_LONG". The value is 0x140F which comes from OpenGL. This indicates data is stored in 8-byte or 64-bit unsigned integers. This is NOT a core part of the glTF specification, and may not be supported by all glTF importers. May be used by some extensions including KHR_interactivity.

Tutorials

Source revision 4f5b14abade2
Connection interrupted. Reload×

Rejoining the server...

Rejoin failed... trying again in seconds.

Failed to rejoin.
Please retry or reload the page.

The session has been paused by the server.

Failed to resume the session.
Please retry or reload the page.