Interface SceneNodeModelBase

Base type for scene nodes

interface SceneNodeModelBase {
    index: number;
    localID: number;
    model: Model;
    parentIndex?: number;
    type: SceneNodeModelType;
}

Hierarchy (view full)

Properties

index: number

The index of this node within the scene array.

localID: number

Local id the scene node represents in the model.

model: Model

Model of the scene node.

parentIndex?: number

The index of a parent node for this node within the scene array.

Type of the scene node.