Fix incorrect export FBX time

Ref: !125717
This commit is contained in:
Alaska
2024-08-28 12:30:56 +10:00
committed by Campbell Barton
parent 9665b32320
commit 2fd2af86e8

View File

@@ -3494,7 +3494,7 @@ def save_single(operator, scene, depsgraph, filepath="",
import bpy_extras.io_utils
print('\nFBX export starting... %r' % filepath)
start_time = time.process_time()
start_time = time.time()
# Generate some data about exported scene...
scene_data = fbx_data_from_scene(scene, depsgraph, settings)
@@ -3537,7 +3537,7 @@ def save_single(operator, scene, depsgraph, filepath="",
if not media_settings.embed_textures:
bpy_extras.io_utils.path_reference_copy(media_settings.copy_set)
print('export finished in %.4f sec.' % (time.process_time() - start_time))
print('export finished in %.4f sec.' % (time.time() - start_time))
return {'FINISHED'}