现在,我可以将在ARKit中创建的内容另存为场景文件,并稍后再加载。
sceneView.scene.write(to: path, options:nil, delegate:nil, progressHandler:nil)
但是可以将场景另存为USDZ文件并重新加载吗?
答案 0 :(得分:0)
目前,仍然无法从USDZ
或SCN
文件格式中获取DAE
文件。
通过Xcode仅提供 OBJ-to-USDZ
,单帧 ABC-to-USDZ
和 USD(X)-to-USDZ
转换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
文件格式。
希望这会有所帮助。