Fixed a bug where use_fake_user would not be set correctly on import

This commit is contained in:
Colin Basnett
2022-04-15 17:35:06 -07:00
parent 37f14a2a19
commit 962fb0a791

View File

@@ -199,10 +199,10 @@ class PsaImporter(object):
action['psa_sequence_name'] = sequence_name
action['psa_fps'] = sequence.fps
actions.append(action)
action.use_fake_user = options.should_use_fake_user
actions.append(action)
# If the user specifies, store the new animations as strips on a non-contributing NLA track.
if options.should_stash:
if armature_object.animation_data is None: