glTF exporter: Manage tweak mode in NLA when needed

This commit is contained in:
Julien Duroure 2021-12-18 12:03:58 +01:00
parent f1c4959cd0
commit f35aff344f
2 changed files with 7 additions and 6 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, 8, 4),
"version": (1, 8, 5),
'blender': (3, 0, 0),
'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0',

View File

@ -52,6 +52,10 @@ def gather_animations(blender_object: bpy.types.Object,
track.is_solo = False
break
# Remove any tweak mode. Restore after export
if blender_object.animation_data:
restore_tweak_mode = blender_object.animation_data.use_tweak_mode
# Export all collected actions.
for blender_action, track_name, on_type in blender_actions:
@ -60,10 +64,7 @@ def gather_animations(blender_object: bpy.types.Object,
if blender_object.animation_data.action is None \
or (blender_object.animation_data.action.name != blender_action.name):
if blender_object.animation_data.is_property_readonly('action'):
# NLA stuff: some track are on readonly mode, we can't change action
error = "Action is readonly. Please check NLA editor"
print_console("WARNING", "Animation '{}' could not be exported. Cause: {}".format(blender_action.name, error))
continue
blender_object.animation_data.use_tweak_mode = False
try:
blender_object.animation_data.action = blender_action
except:
@ -97,7 +98,7 @@ def gather_animations(blender_object: bpy.types.Object,
blender_object.animation_data.action = current_action
if solo_track is not None:
solo_track.is_solo = True
blender_object.animation_data.use_tweak_mode = restore_tweak_mode
return animations, tracks