Firefox Tomorrow

web api event

XRLightProbe: reflectionchange event

View on MDN ↗

Limited availabilitySecure context

The WebXR reflectionchange event fires each time the estimated reflection cube map changes. This happens in response to use movements through different lighting conditions or to direct changes to lighting itself. This event is not cancelable.

Syntax

Use the event name in methods like addEventListener(), or set an event handler property.

addEventListener("reflectionchange", (event) => { })

onreflectionchange = (event) => { }

Event type

Event.

Examples

Using the reflectionchange event

Whenever the reflectionchange event fires on a light probe, you can retrieve an updated cube map by calling getReflectionCubeMap(). This is less expensive than retrieving lighting information with every XRFrame.

const glBinding = new XRWebGLBinding(xrSession, gl);
const lightProbe = await xrSession.requestLightProbe();
let glCubeMap = glBinding.getReflectionCubeMap(lightProbe);

lightProbe.addEventListener("reflectionchange", () => {
  glCubeMap = glBinding.getReflectionCubeMap(lightProbe);
});

The onreflectionchange event handler property

The reflectionchange event is also available using the onreflectionchange event handler property.

lightProbe.onreflectionchange = (event) => {
  glCubeMap = glBinding.getReflectionCubeMap(lightProbe);
};

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also