Hi,
got a question about BaseEnum. If lets say I create New Base Enum, with element :
1. A
2. B
3. C
And after a while, I want to add, lets say "Undecided" and needs to go to number 1, but it not only to move it (by using Alt) to the top. I want the default also automatically to be that new one (1 = Undecided). How to make that happened ?
Without need to go to the table that has that BaseEnum and put some InitValue.
Because without that code, actually BaseEnum will always go to the 1st one, right, but if we change the order, the default will stayed at whatever the 1st one during BaseEnum creation only.
Thanks.