Scene configuration

interface SceneConfig {
    boundingBoxBackColor?: Color3;
    boundingBoxFrontColor?: Color3;
    clearColor?: Color4;
    loadingUILogoUrl?: string;
    loadingUISpinnerUrl?: string;
    useLoadingUI?: boolean;
}

Properties

boundingBoxBackColor?: Color3

Color of the bounding box lines placed behind an object

Color3(1, 0, 1)
boundingBoxFrontColor?: Color3

Color of the bounding box lines placed in front of an object

'#EBA832'
clearColor?: Color4

Defines the color used to clear the render buffer

Color4(1, 1, 1, 1)
loadingUILogoUrl?: string

The logo url to use for the loading screen

1 pixel (alpha = 0) base64 data
loadingUISpinnerUrl?: string

The spinner url to use for the loading screen

1 pixel (alpha = 0) base64 data
useLoadingUI?: boolean

Whether to display the loading UI when loading a model

false