ContextActionPriority
Describes the priority of a context action.
Items 3
| History | Name | Value | Legacy Names | Description | |
|---|---|---|---|---|---|
| 295 | Low | 1000 | The lowest named priority level (value 1000); an action at this level is
invoked after | ||
| 536 | Medium | 2000 | Default | The default priority level (value 2000); used automatically by
ContextActionService:BindAction() and falls between | |
| 534 | High | 3000 | The highest named priority level (value 3000); an action at this level is
invoked before |
Removed items 1
| History | Name | Value | |
|---|---|---|---|
| 534 | Default | 2000 |
Description
ContextActionPriority specifies the relative priority of an action bound via
ContextActionService:BindActionAtPriority(). When multiple actions are
bound to the same input, ContextActionService invokes them in
descending priority order — the action with the highest priority value runs
first and may sink the input before lower-priority actions receive it. The
three named levels map to the integer values Low = 1000, Medium = 2000,
and High = 3000; arbitrary integers are also accepted by
BindActionAtPriority. Medium is the default priority used by
ContextActionService:BindAction().