现在我可以将我在arkit中创建的内容保存为场景文件,稍后再将其加载回去。

sceneView.scene.write(to: path, options:nil, delegate:nil, progressHandler:nil)

但是否可以将场景保存为usdz文件并将其加载回?

最佳答案

目前仍然无法从USDZSCN文件格式获取DAE文件。
只有OBJ-to-USDZ、单帧ABC-to-USDZUSD(X)-to-USDZ转换可通过xcode 10命令行使用:

xcrun usdz_converter ~/Desktop/file.obj ~/Desktop/file.usdz
xcrun usdz_converter ~/Desktop/file.abc ~/Desktop/file.usdz
xcrun usdz_converter ~/Desktop/file.usda ~/Desktop/file.usdz

此外,您还可以使用第三方Vectary软件转换为usdz文件格式。
希望这有帮助。

10-08 12:35