List of active XrHitTestSource.
True if Hit Test is available. This information is available only when the session has started.
True if AR Hit Test is supported.
Fire an event, all additional arguments are passed on to the event listener.
Name of event to fire.
Optionalarg1: anyFirst argument that is passed to the event handler.
Optionalarg2: anySecond argument that is passed to the event handler.
Optionalarg3: anyThird argument that is passed to the event handler.
Optionalarg4: anyFourth argument that is passed to the event handler.
Optionalarg5: anyFifth argument that is passed to the event handler.
Optionalarg6: anySixth argument that is passed to the event handler.
Optionalarg7: anySeventh argument that is passed to the event handler.
Optionalarg8: anyEighth argument that is passed to the event handler.
Self for chaining.
Test if there are any handlers bound to an event name.
The name of the event to test.
True if the object has handlers bound to the specified event name.
Detach an event handler from an event. If callback is not provided then all callbacks are unbound from the event, if scope is not provided then all events with the callback will be unbound.
Optionalname: stringName of the event to unbind.
Optionalcallback: HandleEventCallbackFunction to be unbound.
Optionalscope: anyScope that was used as the this when the event is fired.
Self for chaining.
const handler = () => {};
obj.on('test', handler);
obj.off(); // Removes all events
obj.off('test'); // Removes all events called 'test'
obj.off('test', handler); // Removes all handler functions, called 'test'
obj.off('test', handler, this); // Removes all handler functions, called 'test' with scope this
Attach an event handler to an event.
Name of the event to bind the callback to.
Function that is called when event is fired. Note the callback is limited to 8 arguments.
Optionalscope: any = ...Object to use as 'this' when the event is fired, defaults to current this.
Can be used for removing event in the future.
Attach an event handler to an event. This handler will be removed after being fired once.
Name of the event to bind the callback to.
Function that is called when event is fired. Note the callback is limited to 8 arguments.
Optionalscope: any = ...Object to use as 'this' when the event is fired, defaults to current this.
Attempts to start hit test with provided reference space.
Optionaloptions: {Optional object for passing arguments.
Optionalcallback?: XrHitTestStartCallbackOptional callback function called once hit test source is created or failed.
OptionalentityTypes?: string[]Optional list of underlying entity types against which hit tests will be performed. Defaults to [ XRTRACKABLE_PLANE ]. Can be any combination of the following:
OptionaloffsetRay?: RayOptional ray by which hit test ray can be offset.
Optionalprofile?: stringif hit test source meant to match input source instead of reference space, then name of profile of the XrInputSource should be provided.
OptionalspaceType?: stringReference space type. Defaults to XRSPACE_VIEWER. Can be one of the following:
// start hit testing from viewer position facing forwards
app.xr.hitTest.start({
spaceType: pc.XRSPACE_VIEWER,
callback: (err, hitTestSource) => {
if (err) return;
hitTestSource.on('result', (position, rotation) => {
// position and rotation of hit test result
});
}
});
// start hit testing using an arbitrary ray
const ray = new pc.Ray(new pc.Vec3(0, 0, 0), new pc.Vec3(0, -1, 0));
app.xr.hitTest.start({
spaceType: pc.XRSPACE_LOCAL,
offsetRay: ray,
callback: (err, hitTestSource) => {
// hit test source that will sample real world geometry straight down
// from the position where AR session started
}
});
// start hit testing for touch screen taps
app.xr.hitTest.start({
profile: 'generic-touchscreen',
callback: (err, hitTestSource) => {
if (err) return;
hitTestSource.on('result', (position, rotation, inputSource) => {
// position and rotation of hit test result
// that will be created from touch on mobile devices
});
}
});
StaticEVENT_Fired when new XrHitTestSource is added to the list. The handler is passed the XrHitTestSource object that has been added.
StaticEVENT_Fired when hit test becomes available.
StaticEVENT_Fired when failed create hit test source. The handler is passed the Error object.
StaticEVENT_Fired when XrHitTestSource is removed to the list. The handler is passed the XrHitTestSource object that has been removed.
StaticEVENT_Fired when hit test source receives new results. It provides transform information that tries to match real world picked geometry. The handler is passed the XrHitTestSource that produced the hit result, the Vec3 position, the Quat rotation and the XrInputSource (if it is a transient hit test source).
StaticEVENT_Fired when hit test becomes unavailable.
The Hit Test interface allows initiating hit testing against real-world geometry from various sources: the view, input sources, or an arbitrary ray in space. Results reflect the underlying AR system's understanding of the real world.