Add priority display to mod selector.

This commit is contained in:
Ottermandias 2023-08-01 13:11:33 +02:00
parent 3738b5f8f0
commit a95877b9e4
5 changed files with 34 additions and 3 deletions

View file

@ -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
};