// Query the scene for the item at the position of the `tap` event const [hit] = awaitraycaster.hitItems(event.detail.position);
if (hit != null) { // If there was an item present at the position, select it awaitscene.elements((op) => op.items.where((q) =>q.withItemId(hit.itemId.hex)).select() ); } });
see
Scene.items for more information on the operations that
can be performed on a hit result.
The
Raycaster
class is here.