Skip to main content

All Questions

Filter by
Sorted by
Tagged with
1 vote
1 answer
217 views

iOS ARView.hitTest limited to a max of 100 meters

I found that ARView.hitTest is limited to 100 meters distance. All objects located further than 100m, regardless of size, are not recognized. Is there any way to unblock this? let hitTest = arView....
Sasha's user avatar
  • 764
3 votes
1 answer
1k views

RealityKit – Proper Hit-Testing in ARView

I have a code like this one: @objc func handleTap(_ sender: UITapGestureRecognizer) { let tapLocation = sender.location(in: arView) let hitResult0 = scnView?.hitTest(tapLocation) ...
Sam's user avatar
  • 144