diff --git a/korman/exporter/animation.py b/korman/exporter/animation.py index 8099423..6740da9 100644 --- a/korman/exporter/animation.py +++ b/korman/exporter/animation.py @@ -38,8 +38,8 @@ class AnimationConverter: if id_data is not None: if id_data.animation_data is not None: action = id_data.animation_data.action - return action, getattr(action, "fcurves", None) - return None, None + return action, getattr(action, "fcurves", []) + return None, [] # TODO: At some point, we should consider supporting NLA stuff. # But for now, this seems sufficient.