Sceneform Collisions With Camera
问题 I'm stretching my very limited ARCore knowledge. My question is similar (but different) to this question I want to work out if my device camera node intersects/overlaps with my other nodes, but I've not been having any luck so far I'm trying something like this (the camera is another node): scene.setOnUpdateListener(frameTime -> { Node x = scene.overlapTest(scene.getCamera()); if (x != null) { Log.i(TAG, "setUpArComponents: CAMERA HIT DETECTED at: " + x.getName()); logNodeStatus(x); } });