Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
他们有什么方法可以像 snapchat 那样使用场景视图相机会话快速拍摄高质量的照片吗?或者至少没有图片中的 scnnode 对象?
因为我不想启动第二个相机帧来拍照。我希望它像 snapchat 相机一样集成。
最好的问候,萌
是的
ARSCNViews 有一个内置的快照方法,它返回 ARScene 的 UIImage
所以在Objective-C中你可以这样做:
UIImage *image = [sceneView snapshot];
在斯威夫特
var image = sceneView.snapshot()