Importing COLLADA(.dae) file into blender using python

佐手、 提交于 2019-12-06 04:49:28

While most import/export operators can be found in bpy.ops such as bpy.ops.import_mesh.obj() the collada import/export operators are under bpy.ops.wm. The importer is bpy.ops.wm.collada_import(filepath="").

If your automating the import of many files you will want to use bpy.ops.wm.save_mainfile(filepath="") to save each one as you go.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!