Example #1
0
        private void updateProgress()
        {
            objectsParsed++;
            float value = objectsParsed / (float)objectTotal;

            ExporterWindow.ReportProgress(value, ("Parsing objects: " + objectsParsed + "/" + objectTotal));
        }
Example #2
0
        private void updateProgressWithMessage(string message)
        {
            float value = objectsParsed / (float)objectTotal;

            ExporterWindow.ReportProgress(value, message);
        }