The root nodes of a scene

interface IScene {
    extensions?: Record<string, unknown>;
    extras?: Record<string, unknown>;
    name?: string;
    nodes: number[];
}

Hierarchy (view full)

Properties

extensions?: Record<string, unknown>

Dictionary object with extension-specific objects

extras?: Record<string, unknown>

Application-Specific data

name?: string

The user-defined name of this object

nodes: number[]

The indices of each root node