From c70b656f513c9b727d0384bc06a8af91b9d9d51f Mon Sep 17 00:00:00 2001 From: Owl Date: Sun, 24 Aug 2025 11:58:29 -0400 Subject: forgot to check for nonetype --- bck_export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bck_export.py b/bck_export.py index 8d838ce..5c4f6d7 100644 --- a/bck_export.py +++ b/bck_export.py @@ -89,7 +89,7 @@ def export_bck_func(options, context): # all components for k in range(9): # components with fcurve - if (len(bone_fcurves[k].keyframe_points) >= 1): + if (bone_fcurves[k] != None and len(bone_fcurves[k].keyframe_points) >= 1): value = bone_fcurves[k].evaluate(options.first_frame + j) # check which is the component to get if (k == 0 or k == 3 or k == 6): -- cgit v1.2.3-70-g09d2