It seems like unity displays enumerations in inspector making all names start with big letter.
My issue is I want to have enum of alphabet, including lowercase letters and uppercase letters.
For instance, enum like this
**{A, B, C, a, b, c }**
will display in inspector only options
**A,B,C.**
Now, how do i say unity i want proper representations to be shown? Any way to display A,B,C,a,b,c enum in inspector?
↧