我已经开始尝试使用ARKit了,我遇到了一个问题.我找不到一个教程,展示如何将对象放在最近的表面上.
@H_403_9@解决方法
假设我使用的是包含平面对象的.scn文件.我知道如何把它放在相机的位置,但我怎样才能到达最近的表面.
很抱歉,如果这听起来像代码请求,但我不知道从哪里开始,任何指导将非常感谢
您可以使用可能返回包含距离和变换等信息的结果的
hitTest:
https://developer.apple.com/documentation/arkit/arhittestresult
for result in sceneView.hitTest(CGPoint(x: 0.5,y: 0.5),types: [.existingPlaneUsingExtent,.featurePoint]) { print(result.distance,result.worldTransform) }