Enum AccessorType
Specifies if the accessor’s elements are scalars, vectors, or matrices.
Namespace: Unity.Cloud.Gltfast.Objects
Assembly: Unity.Cloud.Gltfast.dll
Syntax
[JsonConverter(typeof(JsonStringEnumConverter<AccessorType>))]
public enum AccessorType : byte
Fields
| Name | Description |
|---|---|
| Matrix2x2 | 2x2 matrix (4 values) |
| Matrix3x3 | 3x3 matrix (9 values) |
| Matrix4x4 | 4x4 matrix (16 values) |
| Scalar | Scalar. single value. |
| Undefined | Undefined |
| Vector2 | Two component vector |
| Vector3 | Three component vector |
| Vector4 | Four component vector |