Enum Drawer showing incorrect values when [Flags] attribute set
Hi,
I think I may have stumbled upon a bug.
With the value to set 'Cart' it shows 'Gear' in the drawer, this happens consistently throughout all other values

Cheers
I think I have the same problem. I have a flags enum
[System.Flags]
public enum ActionRequirements
{
None = 0,
HandsFree = 1,
}
I set the components with HandsFree and check in the debugger that the value is correct. However in the inspector all it shows me is None.
If it's just a normal enum everything is OK
As alluded to in the OP It looks like what's happening is that it's taking the flag before as some sort of index to what to display. I added another enum flag (2) and when that's selected it's showing the label for value 1
maybe related #891