Class GltfSkin
Joints and matrices defining a skin. https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/schema/skin.schema.json
Inherited Members
Namespace: Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema
Assembly: cs.temp.dll.dll
Syntax
[Serializable]
public class GltfSkin : GltfChildOfRootProperty
Fields
inverseBindMatrices
The index of the accessor containing the floating-point 4x4 inverse-bind matrices. The default is that each matrix is a 4x4 Identity matrix, which implies that inverse-bind matrices were pre-applied.
Declaration
public int inverseBindMatrices
Field Value
Type | Description |
---|---|
Int32 |
joints
Indices of skeleton nodes, used as joints in this skin. The array length must be the
same as the count
property of the inverseBindMatrices
accessor (when defined).
Declaration
public int[] joints
Field Value
Type | Description |
---|---|
Int32[] |
skeleton
The index of the node used as a skeleton root. When undefined, joints transforms resolve to scene root.
Declaration
public int skeleton
Field Value
Type | Description |
---|---|
Int32 |