kimsama / Unity-QuickSheet

Unity-QuickSheet enables you to use spreadsheet file data within Unity editor.
http://kimsama.github.io/Unity-QuickSheet
MIT License
1.05k stars 190 forks source link

Not Possible to Import Enum Array #83

Open bendangelo opened 4 years ago

bendangelo commented 4 years ago

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;