プログレスバーを表示/更新します
ウィンドウのタイトルは title
、左下に表示される情報は info
に設定します。
進捗は0~1を設定することができ、0は何も行われていないことを意味しており、1は100%で完了している意味を指します。
エディタスクリプトやウィザードで処理の長い操作を行う時や
ユーザーに進捗状況を知らせる時に使用すると便利です。
See Also: DisplayCancelableProgressBar, ClearProgressBar 関数
エディタのプログレスバー
// Simple Editor Script that fills a bar in the given seconds. class EditorUtilityDisplayProgressBar extends EditorWindow { var secs = 10.0; var startVal = 0; var progress = 0; @MenuItem("Examples/Progress Bar Usage") static function Init() { var window = GetWindow(EditorUtilityDisplayProgressBar); window.Show(); } function OnGUI() { secs = EditorGUILayout.IntField("Time to wait:", secs); if(GUILayout.Button("Display bar")) { if(secs < 1) { Debug.LogError("Seconds should be bigger than 1"); return; } startVal = EditorApplication.timeSinceStartup; } if(progress < secs) EditorUtility.DisplayProgressBar( "Simple Progress Bar", "Shows a progress bar for the given seconds", progress/secs); else EditorUtility.ClearProgressBar(); progress = EditorApplication.timeSinceStartup - startVal; } function OnInspectorUpdate() { Repaint(); } }