Class Node
An object defining the hierarchy relations and the local transform of its content.
Inherited Members
Namespace: GLTFast.Schema
Assembly: glTFast.dll
Syntax
[Serializable]
public class Node : NamedObject
Fields
camera
Camera index
Declaration
public int camera
Field Value
| Type | Description |
|---|---|
| int |
children
The indices of this node's children.
Declaration
public uint[] children
Field Value
| Type | Description |
|---|---|
| uint[] |
extensions
Node extensions
Declaration
public NodeExtensions extensions
Field Value
| Type | Description |
|---|---|
| NodeExtensions |
matrix
A floating-point 4x4 transformation matrix stored in column-major order.
Declaration
public float[] matrix
Field Value
| Type | Description |
|---|---|
| float[] |
mesh
The index of the mesh in this node.
Declaration
public int mesh
Field Value
| Type | Description |
|---|---|
| int |
rotation
The node's unit quaternion rotation in the order (x, y, z, w), where w is the scalar.
Declaration
public float[] rotation
Field Value
| Type | Description |
|---|---|
| float[] |
scale
The node's non-uniform scale.
Declaration
public float[] scale
Field Value
| Type | Description |
|---|---|
| float[] |
skin
Declaration
public int skin
Field Value
| Type | Description |
|---|---|
| int |
translation
The node's translation.
Declaration
public float[] translation
Field Value
| Type | Description |
|---|---|
| float[] |