Flags attribute doesn't allow multi-select in Behavior Designer

lukeiy

New member
I have an Enum:
Code:
[Flags]
        public enum NavMeshAreas
        {
            None = 0,
            Walkable = 1, NotWalkable = 2, Jump = 4, 
            All = ~0,
        }

Behavior designer does not allow multi-selecting, only toggling. Is there a workaround for this?
 
I can add this to the next version, but in the meantime you can use the object drawer to add that functionality:

 
Top