XRSession.oninputsourceschange

The oninputsourcechange attribute of the XRSession object is the event handler for the inputsourcechange event, which is dispatched when session's list of active XR input sources has changed. The list itself is accessible via XRSession.inputSources.

Note: The XRInputSource objects in XRSession.inputSources array are "live", so values within them are updated in-place. Therefore if you wish to compare input states between frames, you should make a copy of the content of the state in question.

Syntax

XRSession.oninputsourceschange = function(event) { ... }

Example

XRSession.oninputsourceschange = function(event) {
  console.log("The list of active XR input sources has changed.")
}

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
oninputsourceschange
79
79
No
No
No
No
No
79
No
No
No
11.2

See also

XRSession.inputSources

© 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/XRSession/oninputsourceschange