XRLightProbe.onreflectionchange

The onreflectionchange property of the XRLightProbe interface is and event handler for the reflectionchange event.

Value

A function to be invoked whenever the XRLightProbe receives a reflectionchange event.

Examples

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

const glBinding = new XRWebGLBinding(xrSession, gl);

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

See the reflectionchange event page for an example using addEventListener().

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
onreflectionchange
90
90
No
No
76
No
No
90
No
No
No
No

See also

© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/XRLightProbe/onreflectionchange