Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. XRInputSourcesChangeEvent

XRInputSourcesChangeEvent

Limited availability

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 insecure contexts (HTTPS), in some or allsupporting browsers.

The WebXR Device API interfaceXRInputSourcesChangeEvent is used to represent theinputsourceschange event sent to anXRSession when the set of available WebXR input controllers changes.

Event XRInputSourcesChangeEvent

Constructor

XRInputSourcesChangeEvent()

Creates and returns a newXRInputSourcesChangeEvent object. The specified type must beinputsourceschange, which is the only event that uses this interface.

Instance properties

addedRead only

An array of zero or moreXRInputSource objects, each representing an input device which has been newly connected or enabled for use.

removedRead only

An array of zero or moreXRInputSource objects representing the input devices newly connected or enabled for use.

sessionRead only

TheXRSession to which this input source change event is being directed.

Instance methods

WhileXRInputSourcesChangeEvent defines no methods of its own, it inherits methods from its parent interface,Event.

Event types

inputsourceschange

Delivered to theXRSession when the set of input devices available to it changes.

Examples

The following example shows how to set up an event handler which usesinputsourceschange events to detect newly-available pointing devices and to load their models in preparation to display them in the next animation frame.

js
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 forinputsourceschange events by setting theoninputsourceschange event handler:

js
xrSession.oninputsourceschange = onInputSourcesChange;

Specifications

Specification
WebXR Device API
# xrinputsourceschangeevent-interface

Browser compatibility

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp