Version: 2020.1
LanguageEnglish
  • C#

TaskReport

class in UnityEditor

/

Implemented in:UnityEditor

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

This class reports progress when you start a task with Progress.RunTask(...).

[MenuItem("Progress/Run Task 1 (MD5 all assets)", priority = 25)]
static void RunTask1()
{
    Progress.RunTask("Compute MD5", null, (id, data) => EnumerateMD5());
}

static string CalculateMD5(string filename) { using (var md5 = MD5.Create()) { using (var stream = File.OpenRead(filename)) { var hash = md5.ComputeHash(stream); return BitConverter.ToString(hash).Replace("-", "").ToLowerInvariant(); } } }

private static IEnumerator EnumerateMD5() { var assets = AssetDatabase.GetAllAssetPaths(); var index = 0; foreach (var assetPath in assets) { if (Directory.Exists(assetPath)) continue; // Do some calculations with the asset. var md5 = CalculateMD5(assetPath); yield return new Progress.TaskReport(index++ / (float)assets.Length, md5); } }

See Also: Progress.RunTask.

Properties

descriptionThe new progress indicator's description.
errorThe error message to display if the progress indicator's associated task fails.
progressThe new progress indicator's value.

Did you find this page useful? Please give it a rating: