Exemple #1
0
 private void ShowProgress(IPostProcessorTask task, string message)
 {
     if (EditorUtility.DisplayCancelableProgressBar(task.Name, message, this._progressValue))
     {
         throw new ProcessAbortedException(task.Name);
     }
 }
 private void ShowProgress(IPostProcessorTask task, string message)
 {
     if (EditorUtility.DisplayCancelableProgressBar(task.Name, message, this._progressValue))
     {
         throw new ProcessAbortedException(task.Name);
     }
 }
Exemple #3
0
 public void AddNextTask(IPostProcessorTask task)
 {
     task.OnProgress += new ProgressHandler(this.ShowProgress);
     this._tasks.Add(task);
 }
 public SDKToolsDetector(IPostProcessorTask task)
 {
     this._task = task;
 }
 public void AddNextTask(IPostProcessorTask task)
 {
     task.OnProgress += new ProgressHandler(this.ShowProgress);
     this._tasks.Add(task);
 }