版本: Unity 6 (6000.0)
语言英语
  • C#

进度

UnityEditor 中的类

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交的内容,但我们确实会阅读用户提出的每一项更改建议,并在适用的情况下进行更新。

关闭

提交失败

由于某种原因,您的更改建议无法提交。请 <a>重试</a> 几分钟后。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

描述

Progress 实用程序类向 Unity 报告异步任务的进度。

Progress 实用程序类可以通过多种方式用于报告异步任务的进度。以下是一个在 EditorApplication.update 循环中运行并报告进度的任务示例

using System.Collections;
using UnityEditor;

class ProgressReport_EditorUpdate { static IEnumerator s_CurrentEnumerator;

[MenuItem("Examples/ProgressReport/EditorUpdate")] static void RunEditorUpdate() { if (s_CurrentEnumerator == null) { s_CurrentEnumerator = RunTaskWithReport(); } EditorApplication.update -= RunTaskOnUpdate; EditorApplication.update += RunTaskOnUpdate; }

static void RunTaskOnUpdate() { if (s_CurrentEnumerator == null) { return; }

// Execute one step of the task var atEnd = !s_CurrentEnumerator.MoveNext();

// If there is nothing more to do, remove the update callback if (atEnd) { s_CurrentEnumerator = null; EditorApplication.update -= RunTaskOnUpdate; } }

static IEnumerator RunTaskWithReport() { // Create a new progress indicator int progressId = Progress.Start("Running one task");

// Report the progress status at anytime for (int frame = 0; frame <= 1000; ++frame) { string description; if (frame < 250) description = "First part of the task"; else if (frame < 750) description = "Second part of the task"; else description = "Last part of the task"; Progress.Report(progressId, frame / 1000.0f, description);

// Do your computation that you want to report progress on // ... yield return null; }

// The task is finished. Remove the associated progress indicator. Progress.Remove(progressId); } }

以下是在单独线程上运行并报告进度的另一个示例

using System.Threading;
using System.Threading.Tasks;
using UnityEditor;

class ProgressReport_Threaded { [MenuItem("Examples/ProgressReport/Threaded")] static void RunThreaded() { Task.Run(RunTaskWithReport); }

static void RunTaskWithReport() { // Create a new progress indicator int progressId = Progress.Start("Running one task");

// Report the progress status at anytime for (int frame = 0; frame <= 1000; ++frame) { string description; if (frame < 250) description = "First part of the task"; else if (frame < 750) description = "Second part of the task"; else description = "Last part of the task"; Progress.Report(progressId, frame / 1000.0f, description);

// Do your computation that you want to report progress on ComputeSlowStep(); }

// The task is finished. Remove the associated progress indicator. Progress.Remove(progressId); }

static void ComputeSlowStep() { // Simulate a slow computation with a 1 millisecond sleep Thread.Sleep(1); } }

静态属性

globalProgress返回所有正在运行任务的全局平均进度。
globalRemainingTime返回所有正在运行的进度指示器剩余的最大时间。
running如果至少有一个正在运行的进度指示器,则返回 true,否则返回 false。

静态方法

取消取消正在运行的进度指示器,并调用与该任务关联的取消回调。
ClearRemainingTime重置进度指示器剩余时间的计算。
EnumerateItems返回一个枚举器,用于循环遍历所有进度指示器。
Exists检查是否存在具有指定 ID 的进度指示器。
Finish将进度指示器标记为已完成。
GetCount获取可用进度指示器的数量。
GetCountPerStatus对于每个可用状态,获取具有该状态的进度指示器的数量。
GetCurrentStep获取进度指示器的当前步骤。
GetDescription获取进度指示器的描述。
GetEndDateTime获取进度指示器结束的时间戳。
GetId使用进度指示器在所有可用进度指示器集合中的索引找到其唯一 ID。
GetName获取进度指示器的名称。
GetOptions获取您在启动进度指示器时指定的选项。
GetParentId获取进度指示器父级的唯一 ID(如果有)。
GetPriority获取进度指示器的优先级。
GetProgress获取进度指示器的进度。
GetProgressById获取有关进度指示器的信息。
GetRemainingTime获取进度指示器剩余的时间(以秒为单位)。
GetRunningProgressCount获取活动或正在运行的进度指示器的数量。
GetStartDateTime获取进度指示器开始的时间戳。
GetStatus获取进度指示器的状态。
GetStepLabel获取显示进度指示器步骤的标签。
GetTimeDisplayMode获取进度指示器的计时模式。
GetTotalSteps获取进度指示器从开始到结束的总步骤数。
GetUpdateDateTime获取进度指示器上次更改或完成的时间。
IsCancellable指示您是否可以取消进度指示器关联的任务。
IsPausable指示您是否可以暂停进度指示器关联的任务。
Pause暂停正在运行的进度指示器,并调用其任务的暂停回调。
RegisterCancelCallback注册一个回调,该回调在用户请求取消正在运行的进度指示器关联的任务时被调用。
RegisterPauseCallback注册一个回调,该回调在用户请求暂停或恢复正在运行的进度指示器的任务时被调用。
Remove完成并删除活动进度指示器。
Report报告正在运行的进度指示器的当前状态。
Resume恢复已暂停的进度指示器,并调用与该任务关联的暂停回调。
SetDescription设置进度指示器的描述。要清除描述,请传递 null。
SetPriority设置进度指示器的优先级。
SetRemainingTime设置进度指示器剩余的时间(以秒为单位)。
SetStepLabel设置显示进度指示器步骤的标签。
SetTimeDisplayMode设置进度指示器的计时模式。
ShowDetails打开后台任务的进度窗口。
Start此方法启动一个新的进度指示器。
UnregisterCancelCallback注销先前注册的进度取消回调。
UnregisterPauseCallback注销先前注册的进度暂停回调。

事件

added新进度指示器启动时触发的事件。
removed删除进度指示器时触发的事件。
updated进度指示器状态更新时触发的事件。