enum value listing

show the string value of masked enums in variable entries
also sort the combo case of scrolling and rotating materials
This commit is contained in:
AzaezelX 2025-03-06 19:04:22 -06:00
parent 346339904e
commit 64103a58aa
5 changed files with 141 additions and 137 deletions

View file

@ -115,11 +115,12 @@ public:
enum AnimType
{
Scroll = 1,
Rotate = 2,
Wave = 4,
Scale = 8,
Sequence = 16,
No = 0,
Scroll = BIT(0),
Rotate = BIT(1),
Wave = BIT(2),
Scale = BIT(3),
Sequence = BIT(4),
};
enum WaveType