glTF exporter: fix driver export when shapekey as a dot in name

This commit is contained in:
Julien Duroure 2021-07-04 17:48:34 +02:00
parent ac6fe2ff7c
commit 54d8bdf1f1
2 changed files with 6 additions and 2 deletions

View File

@ -15,7 +15,7 @@
bl_info = {
'name': 'glTF 2.0 format',
'author': 'Julien Duroure, Scurest, Norbert Nopper, Urs Hanselmann, Moritz Becher, Benjamin Schmithüsen, Jim Eckerlein, and many external contributors',
"version": (1, 7, 12),
"version": (1, 7, 13),
'blender': (2, 91, 0),
'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0',

View File

@ -332,7 +332,11 @@ def __gather_output(channels: typing.Tuple[bpy.types.FCurve],
else:
object_path = None
is_armature_animation = bake_bone is not None or (blender_object_if_armature is not None and object_path != "")
# If driver_obj is set, this is a shapekey animation
if driver_obj is not None:
is_armature_animation = False
else:
is_armature_animation = bake_bone is not None or (blender_object_if_armature is not None and object_path != "")
if is_armature_animation:
if bake_bone is None: