Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the BundleExportProgressEventArgs
 /// </summary>
 /// <param name="exportStage">The current export stage for the bundle</param>
 /// <param name="stageProgress">The progress of the current export stage</param>
 /// <param name="totalProgress">The total progress of the export</param>
 /// <param name="stageDescription">An optional description for the current stage</param>
 public BundleExportProgressEventArgs(BundleExportStage exportStage, int stageProgress, int totalProgress, string stageDescription = "")
 {
     ExportStage      = exportStage;
     StageProgress    = stageProgress;
     TotalProgress    = totalProgress;
     StageDescription = stageDescription;
 }
Beispiel #2
0
 public SheetGenerationBundleExportProgressEventArgs(AnimationSheet sheet, BundleExportStage exportStage, int stageProgress, int totalProgress, string stageDescription = "")
     : base(exportStage, stageProgress, totalProgress, stageDescription)
 {
     Sheet = sheet;
 }