Interface AmbientLightParams

Parameters for an AmbientLight.

interface AmbientLightParams {
    color?: FloatArrayParam;
    id?: string;
    intensity?: number;
}

Properties

Properties

RGB color of the AmbientLight.

Range is [0..1, 0..1, 0..1].

Default value is [1.0, 1.0, 1.0].

id?: string

Optional ID, generated automatically when omitted.

intensity?: number

Intensity of the AmbientLight.

Default value is 0.5.