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.