1
0
mirror of https://github.com/DarklightGames/io_scene_psk_psa.git synced 2024-12-18 01:05:57 +01:00

Removed debug print

This commit is contained in:
Colin Basnett 2023-09-18 14:16:02 -07:00
parent cf13aade98
commit afcfebe84a

View File

@ -130,9 +130,8 @@ if __name__ == '__main__':
@persistent @persistent
def load_handler(dummy): def load_handler(dummy):
print('RUNNING LOAD HANDLER')
# Convert old `psa_sequence_fps` property to new `psa_export.fps` property. # Convert old `psa_sequence_fps` property to new `psa_export.fps` property.
# This is only needed for backwards compatibility with older versions of the addon. # This is only needed for backwards compatibility with files that may have used older versions of the addon.
for action in bpy.data.actions: for action in bpy.data.actions:
if 'psa_sequence_fps' in action: if 'psa_sequence_fps' in action:
action.psa_export.fps = action['psa_sequence_fps'] action.psa_export.fps = action['psa_sequence_fps']