Interface IRenderer

Interface defining the basic renderer capabilities

interface IRenderer {
    backgroundBlur: number;
    backgroundColor: RGBA;
    ghostColor: RGBA;
    hdrBackgroundSaturation: number;
    hdrBackgroundScale: number;
    hdrScale: number;
    lockIblRotation: boolean;
    onSceneUpdated: ISignal;
    toneMappingWhitePoint: number;
    getBoundingBox(): Promise<Box3>;
}

Implemented by

Properties

backgroundBlur: number
backgroundColor: RGBA
ghostColor: RGBA
hdrBackgroundSaturation: number
hdrBackgroundScale: number
hdrScale: number
lockIblRotation: boolean
onSceneUpdated: ISignal
toneMappingWhitePoint: number

Methods