Browse Source

Add "Cleanup" progress phase.

This is in response to feedback that the "Writing Age" phase seems slow.
pull/330/head
Adam Johnson 2 years ago
parent
commit
665429d24a
Signed by: Hoikas
GPG Key ID: 0B6515D6FF6F271E
  1. 2
      korman/exporter/convert.py

2
korman/exporter/convert.py

@ -80,6 +80,7 @@ class Exporter:
self.report.progress_add_step("Exporting Textures")
self.report.progress_add_step("Composing Geometry")
self.report.progress_add_step("Saving Age Files")
self.report.progress_add_step("Cleaning Up")
self.report.progress_start("EXPORTING AGE")
# Step 0.9: Apply modifiers to all meshes temporarily.
@ -133,6 +134,7 @@ class Exporter:
# Step 5.1: Save out the export report.
# If the export fails and this doesn't save, we have bigger problems than
# these little warnings and notices.
self.report.progress_advance()
self.report.progress_end()
self.report.save()

Loading…
Cancel
Save