我在应用程序中使用了 ARKit ,并且使用ARSCNDebugOptionShowFeaturePoints
为场景提供了调试选项,但是在ARSCNDebugOptionShowFeaturePoints
上点击手势不起作用。我正在用Objective-C写作。
如果没有ARSCNDebugOptionShowFeaturePoints
,我会感到厌倦,那么它可以正常工作,但是在添加ARSCNDebugOptionShowFeaturePoints
之后却无法正常工作。
self.sceneView.delegate = self.sceneControl;
self.sceneView.debugOptions = ARSCNDebugOptionShowFeaturePoints;
self.sceneNode = [NSMutableArray new];
self.sceneView.showsStatistics = YES;
self.sceneView.autoenablesDefaultLighting = YES;
我期望使用ARSCNDebugOptionShowFeaturePoints
进行检测,并需要放置在ARSCNDebugOptionShowFeaturePoints
上,并且我没有收到任何有关此的错误消息。
预先感谢