web api interface
XRInputSourcesChangeEvent
Secure context
The WebXR Device API interface XRInputSourcesChangeEvent is used to represent the inputsourceschange event sent to an XRSession when the set of available WebXR input controllers changes.
Constructor
XRInputSourcesChangeEvent()- : Creates and returns a new
XRInputSourcesChangeEventobject. The specified type must beinputsourceschange, which is the only event that uses this interface.
- : Creates and returns a new
Instance properties
addedRead only- : An array of zero or more
XRInputSourceobjects, each representing an input device which has been newly connected or enabled for use.
- : An array of zero or more
removedRead only- : An array of zero or more
XRInputSourceobjects representing the input devices newly connected or enabled for use.
- : An array of zero or more
sessionRead only- : The
XRSessionto which this input source change event is being directed.
- : The
Instance methods
While XRInputSourcesChangeEvent defines no methods of its own, it inherits methods from its parent interface, Event.
Event types
inputsourceschange- : Delivered to the
XRSessionwhen the set of input devices available to it changes.
- : Delivered to the
Examples
The following example shows how to set up an event handler which uses inputsourceschange events to detect newly-available pointing devices and to load their models in preparation to display them in the next animation frame.
xrSession.addEventListener("inputsourceschange", onInputSourcesChange);
function onInputSourcesChange(event) {
for (const input of event.added) {
if (input.targetRayMode === "tracked-pointer") {
loadControllerMesh(input);
}
}
}
You can also add a handler for inputsourceschange events by setting the oninputsourceschange event handler:
xrSession.oninputsourceschange = onInputSourcesChange;
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.