Parameters for a Lights component.

Aggregates the View's environment-illumination components — the cubemap-based IBL and the analytical hemispheric ambient. Both are optional and fall back to their own constructor defaults when omitted.

interface LightsParams {
    hemispheric?: HemisphereAmbientParams;
    ibl?: IBLParams;
}

Properties

Properties

Parameters for the View's analytical hemisphere ambient term, HemisphereAmbient — accessible at Lights.hemispheric.

ibl?: IBLParams

Parameters for the View's cubemap image-based lighting, IBL — accessible at Lights.ibl.