dom / latest / xrtransientinputhittestresult / inputsource.html /

XRTransientInputHitTestResult.inputSource

The read-only inputSource property of the XRTransientInputHitTestResult interface represents an XRInputSource object that was used to compute the results array.

Value

An XRInputSource object.

Examples

Filtering input sources

The inputSource property allows you to filter hit test results by input source.

// frame loop
function onXRFrame(time, xrFrame) {
  let hitTestResults = xrFrame.getHitTestResultsForTransientInput(transientHitTestSource);

  hitTestResults.forEach(resultsPerInputSource => {
    if (resultsPerInputSource.inputSource == myPreferredInputSource) {
      // act on hit test results from the preferred input source
    }
  }
 }

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
inputSource
81
81
No
No
No
No
No
81
No
No
No
13.0

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/XRTransientInputHitTestResult/inputSource