# Progress.Priority

> An enumeration that defines task priorities.

## Definition

* **Type:** Enum
* **Namespace:** [UnityEditor](/engine/6000.0/script-reference/unityeditor.md)
* **Assembly:** UnityEditor

```csharp
public enum Progress.Priority
```

## Remarks

Progress indicators are sorted by priority, from highest to lowest. Priorities also determine the visual behavior of progress indicators. Each item in this enumeration defines the threshold value for each priority level. For example, [Low](/engine/6000.0/script-reference/unityeditor/progress/priority/low.md) is 2 and [Normal](/engine/6000.0/script-reference/unityeditor/progress/priority/normal.md) is 6, so values between 2 and 5 are [Low](/engine/6000.0/script-reference/unityeditor/progress/priority/low.md) priorities.

## Fields

| Value                                                                                         | Description                                                                                    |
| --------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- |
| [High](/engine/6000.0/script-reference/unityeditor/progress/priority/high.md)                 | A high priority task can be unresponsive, and is displayed in the global progress bar.         |
| [Idle](/engine/6000.0/script-reference/unityeditor/progress/priority/idle.md)                 | An idle priority task cannot be unresponsive, and is not displayed in the global progress bar. |
| [Low](/engine/6000.0/script-reference/unityeditor/progress/priority/low.md)                   | A low priority task cannot be unresponsive, but is displayed in the global progress bar.       |
| [Normal](/engine/6000.0/script-reference/unityeditor/progress/priority/normal.md)             | A normal priority task can be unresponsive, and is displayed in the global progress bar.       |
| [Unresponsive](/engine/6000.0/script-reference/unityeditor/progress/priority/unresponsive.md) | An unresponsive task is always shown as unresponsive.                                          |
