From 665429d24a109449d772a53b70c55e24a302a568 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Sat, 16 Apr 2022 16:30:04 -0400 Subject: [PATCH] Add "Cleanup" progress phase. This is in response to feedback that the "Writing Age" phase seems slow. --- korman/exporter/convert.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/korman/exporter/convert.py b/korman/exporter/convert.py index 9761eb3..6001b3a 100644 --- a/korman/exporter/convert.py +++ b/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()