Class AccessorSparseBase
Sparse property of a glTF
Inherited Members
Namespace: GLTFast.Schema
Assembly: solution.dll
Syntax
[Serializable]
public abstract class AccessorSparseBase
Fields
count
Number of entries stored in the sparse array.
Declaration
public int count
Field Value
Type | Description |
---|---|
int |
See Also
Properties
Indices
Index array of size count
that points to those accessor attributes that
deviate from their initialization value. Indices must strictly increase.
Declaration
public abstract AccessorSparseIndices Indices { get; }
Property Value
Type | Description |
---|---|
AccessorSparseIndices |
See Also
Values
"Array of size count
times number of components, storing the displaced
accessor attributes pointed by indices
. Substituted values must have
the same componentType
and number of components as the base accessor.
Declaration
public abstract AccessorSparseValues Values { get; }
Property Value
Type | Description |
---|---|
AccessorSparseValues |