Version: 2020.1

TaskError

class in UnityEditor

/

继承自:Progress.TaskReport

切换到手册

描述

This class is used to report an error when using Progress.RunTask(...).

[MenuItem("Progress/Run Task With Error", priority = 25)]
static void RunTaskWithError()
{
    Progress.RunTask("Task With Error", null, (id, data) => TaskWithError());
}

static IEnumerator TaskWithError() { for (var i = 0; i < 100; ++i) { yield return WaitForSeconds(0.1f); if (i < 75) yield return new Progress.TaskReport(i / 100.0f); else yield return new Progress.TaskError("Forcing an error when reaching 75%."); } }

See Also: Progress.RunTask.

继承的成员

变量

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.
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961