如何通过Python在Blender中自动应用电枢变换?

时间:2019-01-06 21:11:56

标签: python blender

我正在尝试自动应用几个对象的电枢转换。但是,我无法使用下面的代码来实现它。在测试中,问题似乎出在最后一行,只是最后一行。

import bpy

context = bpy.context
scene = context.scene

objs = bpy.data.objects

for obj in objs:
         if obj != None:
           obj.select = True
           bpy.context.scene.objects.active = obj
           bpy.ops.object.transform_apply(apply_as='DATA', modifier="Armature") #this line is throwing error
           obj.select = False      

感谢帮助!

0 个答案:

没有答案