glTF exporter: fix typo in hook name

Preventing having 2 hooks with same name at different places
This commit is contained in:
Julien Duroure
2024-10-31 13:44:37 +01:00
parent 16754328f6
commit fb2edb17d9
2 changed files with 2 additions and 2 deletions

View File

@@ -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',

View File

@@ -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