Enum GltfAccessorAttributeType
Specifier for an accessor’s type https://www.khronos.org/registry/glTF/specs/2.0/glTF-2.0.html#accessor-data-types
Namespace: GLTFast.Schema
Syntax
public enum GltfAccessorAttributeType : byte
Fields
Name | Description | Value |
---|---|---|
Undefined | Unknown/undefined type |
0 |
SCALAR | Scalar. single value. |
1 |
VEC2 | Two component vector |
2 |
VEC3 | Three component vector |
3 |
VEC4 | Four component vector |
4 |
MAT2 | 2x2 matrix (4 values) |
5 |
MAT3 | 3x3 matrix (9 values) |
6 |
MAT4 | 4x4 matrix (16 values) |
7 |