Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. XRInputSourcesChangeEvent
  4. added

XRInputSourcesChangeEvent: added property

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 read-onlyXRInputSourcesChangeEventpropertyadded is a list of zero ormore input sources, each identified using anXRInputSource object,which have been newly made available for use.

Value

AnArray of zero or moreXRInputSource objects, eachrepresenting one input device added to the XR system.

Examples

The example below creates a handler for theinputsourceschange event thatprocesses the lists of added and removed from the WebXR system. It looks for new andremoved devices whosetargetRayMode istracked-pointer.

js
xrSession.oninputsourcescchange = (event) => {  for (const input of event.added) {    if (input.targetRayMode === "tracked-pointer") {      addedPointerDevice(input);    }  }  for (const input of event.removed) {    if (input.targetRayMode === "tracked-pointer") {      removedPointerDevice(input);    }  }};

Specifications

Specification
WebXR Device API
# dom-xrinputsourceschangeevent-added

Browser compatibility

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp