files/en-us/web/api/xrsession/requesthittestsourcefortransientinput/index.md
{{APIRef("WebXR Device API")}}{{SeeCompatTable}}{{SecureContext_Header}}
The requestHitTestSourceForTransientInput() method of the
{{domxref("XRSession")}} interface returns a {{jsxref("Promise")}} that resolves with an {{domxref("XRTransientInputHitTestSource")}} object that can be passed to {{domxref("XRFrame.getHitTestResultsForTransientInput()")}}.
requestHitTestSourceForTransientInput(options)
options
profile
entityTypes {{Optional_Inline}}
plane type. Possible types:
point: Compute hit test results based on characteristic points detected.plane: Compute hit test results based on real-world planes detected.mesh: Compute hit test results based on meshes detected.offsetRay {{Optional_Inline}}
XRRay object has been provided, a new XRRay object is constructed without any parameters.A {{jsxref("Promise")}} that resolves with an {{domxref("XRTransientInputHitTestSource")}} object.
Rather than throwing true exceptions, requestHitTestSourceForTransientInput() rejects the
returned promise with a {{domxref("DOMException")}}, specifically, one of the following:
NotSupportedError {{domxref("DOMException")}}
hit-test is not an enabled feature in {{domxref("XRSystem.requestSession()")}}.InvalidStateError {{domxref("DOMException")}}
NotAllowedError {{domxref("DOMException")}}
To request a hit test source, start an {{domxref("XRSession")}} with the hit-test session feature enabled. Next, configure the hit test source and store it for later use in the frame loop and call {{domxref("XRFrame.getHitTestResultsForTransientInput()")}} to obtain the result.
const xrSession = navigator.xr.requestSession("immersive-ar", {
requiredFeatures: ["local", "hit-test"],
});
let transientHitTestSource = null;
xrSession
.requestHitTestSourceForTransientInput({
profile: "generic-touchscreen",
offsetRay: new XRRay(),
})
.then((touchScreenHitTestSource) => {
transientHitTestSource = touchScreenHitTestSource;
});
// frame loop
function onXRFrame(time, xrFrame) {
let hitTestResults = xrFrame.getHitTestResultsForTransientInput(
transientHitTestSource,
);
// do things with the transient hit test results
}
{{Specifications}}
{{Compat}}