diff --git a/scripts/addons_core/io_scene_gltf2/__init__.py b/scripts/addons_core/io_scene_gltf2/__init__.py index ecac45f3168..52aa9dd4c86 100755 --- a/scripts/addons_core/io_scene_gltf2/__init__.py +++ b/scripts/addons_core/io_scene_gltf2/__init__.py @@ -5,7 +5,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": (4, 3, 39), + "version": (4, 3, 40), 'blender': (4, 3, 0), 'location': 'File > Import-Export', 'description': 'Import-Export as glTF 2.0', diff --git a/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/channels.py b/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/channels.py index 37d4399be05..1fa789efa1a 100644 --- a/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/channels.py +++ b/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/channels.py @@ -292,7 +292,7 @@ def __gather_animation_fcurve_channel(obj_uuid: str, ) blender_object = export_settings['vtree'].nodes[obj_uuid].blender_object - export_user_extensions('animation_gather_fcurve_channel_target', export_settings, blender_object, bone) + export_user_extensions('animation_gather_fcurve_channel', export_settings, blender_object, bone, channel_group) return animation_channel return None