I have a Enum that has about 30 enumerators (Names of characters). It gets a bit annoying to search by eye this list of enums, especially since I expect it to grow. The logic of the Enum is very handy however. It would be nice if I could search the enum list in the same way I can search for materials and assets. Any methods you guys can recommend when dealing with large Enums?
still a pain in the butt but i guess you could manually order the Enum to be alphabetical, warning though i ‘think’ this will break links (like switch statements) in fact its probably a bad idea but i’ll leave it here for people who may start fresh