Interface SceneParams

Parameters for creating a Scene.

interface SceneParams {
    coordinateSystem: CoordinateSystemParams;
    id?: string;
    logging?: boolean;
}

Properties

coordinateSystem: CoordinateSystemParams

Configures the Scene's global coordinate system.

id?: string

Unique ID for the Scene.

Default value is a generated UUID.

logging?: boolean

Indicates whether to log errors to the console.

Default value is false.