diff options
author | Owl <isaclien9752@gmail.com> | 2025-08-24 11:58:29 -0400 |
---|---|---|
committer | Owl <isaclien9752@gmail.com> | 2025-08-24 11:58:29 -0400 |
commit | c70b656f513c9b727d0384bc06a8af91b9d9d51f (patch) | |
tree | 67d6dd7d647913b3a65ce4fbf47a0bc59c7943e2 /bck_export.py | |
parent | 4bc406964fd6809e8e77b7bb0c5317f5cb94a1a8 (diff) | |
download | blenxy-6.0.tar.gz blenxy-6.0.zip |
forgot to check for nonetype6.0
Diffstat (limited to 'bck_export.py')
-rw-r--r-- | bck_export.py | 2 |
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): |