提交 50ca54cc 编写于 作者: M Matt Hirsch

objects with parents containing keyframe animations, but which don't...

objects with parents containing keyframe animations, but which don't themselves contain keyframe animations, break the exporter
上级 754b780f
......@@ -174,9 +174,13 @@ EXPORTED_TRACKABLE_FIELDS = [ "location", "scale", "rotation_quaternion" ]
@_object
def animated_xform(obj, options):
if obj.animation_data is None:
return []
fcurves = obj.animation_data
if not fcurves:
return []
if fcurves.action is None:
return []
fcurves = fcurves.action.fcurves
objName = obj.name
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册