首先我将目标文件导入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>