我正在尝试自动应用几个对象的电枢转换。但是,我无法使用下面的代码来实现它。在测试中,问题似乎出在最后一行,只是最后一行。
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
感谢帮助!