|
@@ -174,9 +174,13 @@ EXPORTED_TRACKABLE_FIELDS = [ "location", "scale", "rotation_quaternion" ]
|
|
|
|
|
|
@_object
|
|
@_object
|
|
def animated_xform(obj, options):
|
|
def animated_xform(obj, options):
|
|
|
|
+ if obj.animation_data is None:
|
|
|
|
+ return []
|
|
fcurves = obj.animation_data
|
|
fcurves = obj.animation_data
|
|
if not fcurves:
|
|
if not fcurves:
|
|
return []
|
|
return []
|
|
|
|
+ if fcurves.action is None:
|
|
|
|
+ return []
|
|
fcurves = fcurves.action.fcurves
|
|
fcurves = fcurves.action.fcurves
|
|
|
|
|
|
objName = obj.name
|
|
objName = obj.name
|