Version: 2022.1

EditorUtility.DisplayProgressBar

切换到手册
public static void DisplayProgressBar (string title, string info, float progress);

描述

显示或更新进度条。

窗口标题将设置为 /title/,信息将设置为 /info/。 进度应设置为 0.0 和 1.0 之间的一个值,0 表示一点儿也没有完成,1.0 表示完成 100%。

This is useful when you perform a long blocking operation in an Editor script, and want to notify the user about the progress. Use this method for long operations that make the editor non-responsive. For long operations that happen in the background, use the Progress class instead.

After you display the progress bar, clear it using ClearProgressBar.

See Also: DisplayCancelableProgressBar, ClearProgressBar methods, Progress class.


编辑器中的进度条。

using System.Threading;
using UnityEditor;
using UnityEngine;

// Shows a progress bar for the specified number of seconds. public class EditorUtilityDisplayProgressBar : EditorWindow { public float secs = 5f; [MenuItem("Examples/Progress Bar Usage")] static void Init() { var window = GetWindow(typeof(EditorUtilityDisplayProgressBar)); window.Show(); }

void OnGUI() { secs = EditorGUILayout.Slider("Time to wait:", secs, 1.0f, 20.0f); if (GUILayout.Button("Display bar")) { var step = 0.1f; for (float t = 0; t < secs; t += step) { EditorUtility.DisplayProgressBar("Simple Progress Bar", "Doing some work...", t / secs); // Normally, some computation happens here. // This example uses Sleep. Thread.Sleep((int)(step * 1000.0f)); } EditorUtility.ClearProgressBar(); } } }