web api interface
XRLightEstimate
Secure contextLimited availability
The XRLightEstimate interface of the WebXR Device API provides the estimated lighting values for an XRLightProbe at the time represented by an XRFrame.
To get an XRLightEstimate object, call the getLightEstimate() method.
Instance properties
primaryLightDirectionRead only Experimental- : A
DOMPointReadOnlyrepresenting the direction to the primary light source from theprobeSpaceof anXRLightProbe.
- : A
primaryLightIntensityRead only Experimental- : A
DOMPointReadOnly(with thex,y,zvalues mapped to RGB) representing the intensity of the primary light source from theprobeSpaceof anXRLightProbe.
- : A
sphericalHarmonicsCoefficientsRead only Experimental- : A
Float32Arraycontaining 9 spherical harmonics coefficients.
- : A
Instance methods
None.
Examples
Getting an XRLightProbe object
First, use the requestLightProbe() method to get a light probe from a session.
Then, within an XRFrame loop, the getLightEstimate() method will return a XRLightEstimate object containing the lighting values for each frame.
const lightProbe = await xrSession.requestLightProbe();
// frame loop
function onXRFrame(time, xrFrame) {
let lightEstimate = xrFrame.getLightEstimate(lightProbe);
// Use light estimate data to light the scene
// Available properties
lightEstimate.sphericalHarmonicsCoefficients;
lightEstimate.primaryLightDirection;
lightEstimate.primaryLightIntensity;
}
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.