This feature is not Baseline because it does not work in some of the most widely-used browsers.
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The XRLightProbe interface of the WebXR Device API contains lighting information at a given point in the user's environment. You can get an XRLighting object using the XRSession.requestLightProbe() method.
This object doesn't itself contain lighting values, but it is used to collect lighting states for each XRFrame. See XRLightEstimate for the estimated lighting values for an XRLightProbe.
XRLightProbe.onreflectionchangeEvent handler property for the reflectionchange event.
XRLightProbe.probeSpace Read only Experimental
An XRSpace tracking the position and orientation the lighting estimations are relative to.
None.
reflectionchange Experimental
Fired each time the estimated reflection cube map changes. (This happens when the user moves around and the environment's lighting changes.)
XRLightProbe object for a sessionUse the XRSession.requestLightProbe() method to get a light probe.
const lightProbe = await xrSession.requestLightProbe();
XRFrame
Pass the light probe's probeSpace to XRFrame.getPose() to get a light probe for a pose.
const probePose = xrFrame.getPose(lightProbe.probeSpace, xrReferenceSpace);
reflectionchange eventPass XRLightProbe to get a reflection cube map whenever the reflectionchange event fires. See also XRWebGLBinding.getReflectionCubeMap().
const glBinding = new XRWebGLBinding(xrSession, gl);
const lightProbe = await xrSession.requestLightProbe();
let glCubeMap = glBinding.getReflectionCubeMap(lightProbe);
lightProbe.addEventListener("reflectionchange", () => {
glCubeMap = glBinding.getReflectionCubeMap(lightProbe);
});
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
XRLightProbe |
90 | 90 | No | 76 | No | 90 | No | 64 | No | 15.0 | No | No |
probeSpace |
90 | 90 | No | 76 | No | 90 | No | 64 | No | 15.0 | No | No |
reflectionchange_event |
90 | 90 | No | 76 | No | 90 | No | 64 | No | 15.0 | No | No |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/XRLightProbe