I tried assigning a field as enum and checking the array bool. In the outputted code I see the field is defined for a single enum.
[SerializeField]
EnemyGroupTypes enemygrouptypes;
public EnemyGroupTypes ENEMYGROUPTYPES { get {return enemygrouptypes; } set { this.enemygrouptypes = value;} }
I'm expecting something like this:
EnemyGroupTypes[] enemygrouptypes;
I tried assigning a field as enum and checking the array bool. In the outputted code I see the field is defined for a single enum.
I'm expecting something like this: