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 in secure contexts (HTTPS), in some or all supporting browsers.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The XRRay interface of the WebXR Device API is a geometric ray described by an origin point and a direction vector.
XRRay objects can be passed to XRSession.requestHitTestSource() or XRSession.requestHitTestSourceForTransientInput() to perform hit testing.
XRRay() Experimental
Creates a new XRRay object.
XRRay.direction Read only Experimental
A DOMPointReadOnly representing the ray's 3-dimensional directional vector.
XRRay.matrix Read only Experimental
A transform that can be used to position objects along the XRRay. This is a 4 by 4 matrix given as a 16 element Float32Array in column major order.
XRRay.origin Read only Experimental
A DOMPointReadOnly representing the 3-dimensional point in space that the ray originates from, in meters.
None.
XRRay to request a hit test sourceThe XRSession.requestHitTestSource() method takes an XRRay object for its offsetRay option. In this example, the hit test source is positioned slightly above the viewer as the application has some UI elements at the bottom while wanting to maintain the perception of a centered cursor.
const xrSession = navigator.xr.requestSession("immersive-ar", {
requiredFeatures: ["local", "hit-test"],
});
let hitTestSource = null;
xrSession
.requestHitTestSource({
space: viewerSpace, // obtained from xrSession.requestReferenceSpace("viewer");
offsetRay: new XRRay({ y: 0.5 }),
})
.then((viewerHitTestSource) => {
hitTestSource = viewerHitTestSource;
});
| Specification |
|---|
| WebXR Hit Test Module> # xrray-interface> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
XRRay |
81 | 81 | No | 68 | No | 81 | No | 58 | No | 13.0 | No | No |
XRRay |
81 | 81 | No | 68 | No | 81 | No | 58 | No | 13.0 | No | No |
direction |
81 | 81 | No | 68 | No | 81 | No | 58 | No | 13.0 | No | No |
matrix |
81 | 81 | No | 68 | No | 81 | No | 58 | No | 13.0 | No | No |
origin |
81 | 81 | No | 68 | No | 81 | No | 58 | No | 13.0 | No | No |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/XRRay