Blender对象导入器

时间:2014-09-03 09:52:22

标签: python object import blender

首先我将目标文件导入blender,现在如下:

full_path_to_file = os.getenv("temp") + "\\" + self.url + '.obj'
bpy.ops.import_scene.obj(filepath=full_path_to_file)

#join all before imported objects to a group (not the other objects of the scene)

在此之后,我想将已导入的所有对象配对(不加入),这样我就可以定位每一个对象,因此仍然可以移动单个对象或用它们做一些动画。 / p>

1 个答案:

答案 0 :(得分:2)

我在这方面看到了这个问题,这有助于我解决这个问题:

How to mark last imported *obj in blender

相关问题