现在我可以将我在arkit中创建的内容保存为场景文件,稍后再将其加载回去。
sceneView.scene.write(to: path, options:nil, delegate:nil, progressHandler:nil)
但是否可以将场景保存为usdz文件并将其加载回?
最佳答案
目前仍然无法从USDZ
或SCN
文件格式获取DAE
文件。
只有OBJ-to-USDZ
、单帧ABC-to-USDZ
和USD(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
文件格式。希望这有帮助。