summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwl <isaclien9752@gmail.com>2025-08-24 11:58:29 -0400
committerOwl <isaclien9752@gmail.com>2025-08-24 11:58:29 -0400
commitc70b656f513c9b727d0384bc06a8af91b9d9d51f (patch)
tree67d6dd7d647913b3a65ce4fbf47a0bc59c7943e2
parent4bc406964fd6809e8e77b7bb0c5317f5cb94a1a8 (diff)
downloadblenxy-c70b656f513c9b727d0384bc06a8af91b9d9d51f.tar.gz
blenxy-c70b656f513c9b727d0384bc06a8af91b9d9d51f.zip
forgot to check for nonetype6.0
-rw-r--r--bck_export.py2
1 files changed, 1 insertions, 1 deletions
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):