mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-02-18 05:47:52 +01:00
Add priority display to mod selector.
This commit is contained in:
parent
3738b5f8f0
commit
a95877b9e4
5 changed files with 34 additions and 3 deletions
|
|
@ -23,7 +23,8 @@ public enum ColorId
|
|||
SelectedCollection,
|
||||
RedundantAssignment,
|
||||
NoModsAssignment,
|
||||
NoAssignment,
|
||||
NoAssignment,
|
||||
SelectorPriority,
|
||||
}
|
||||
|
||||
public static class Colors
|
||||
|
|
@ -62,6 +63,7 @@ public static class Colors
|
|||
ColorId.RedundantAssignment => ( 0x6050D0D0, "Redundant Collection Assignment", "A collection assignment that currently has no effect as it is redundant with more general assignments."),
|
||||
ColorId.NoModsAssignment => ( 0x50000080, "'Use No Mods' Collection Assignment", "A collection assignment set to not use any mods at all."),
|
||||
ColorId.NoAssignment => ( 0x00000000, "Unassigned Collection Assignment", "A collection assignment that is not configured to any collection and thus just has no specific treatment."),
|
||||
ColorId.SelectorPriority => ( 0xFF808080, "Mod Selector Priority", "The priority displayed for non-zero priority mods in the mod selector."),
|
||||
_ => throw new ArgumentOutOfRangeException( nameof( color ), color, null ),
|
||||
// @formatter:on
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue