我想在会话的上下文中创建一个锚点而不是可跟踪的平面。我想知道这两个语句是否相同,或者在不同的上下文中创建锚点是不同的?
arFragment.setOnTapArPlaneListener(
(HitResult hitResult, Plane plane, MotionEvent motionEvent) -> {
Anchor anchor = arFragment.getArSceneView().getSession().createAnchor(hitResult.getHitPose());
Anchor anchor = hitResult.createAnchor();
AnchorNode anchorNode = new AnchorNode(anchor);
});
我相信陈述1即
Anchor anchor = arFragment.getArSceneView().getSession().createAnchor(hitResult.getHitPose());
在会话
的上下文中创建锚点和声明2,即
Anchor anchor = hitResult.createAnchor();
在飞机/可追踪物的背景下创建锚
我说错了吗?