This works for creating a field that has a drop down box with all available options.
   [System.Serializable]
    private enum researchTypes
    {
        PHYSICS, BIOLOGY, ENGINEERING, ALL, NONE
    }
This does not work when I try to do the same thing, except now with the intention of being able to list several enumerated items.
    [System.Serializable]
    private enum worldCardTagTypes
    {
        NONE, ROCKY, ICE, MINIMAL_GRAVITY, GAS_GIANT //
    }
    [SerializeField] List<worldCardTagTypes> worldCardTags = new List<worldCardTagTypes>;
My goal is to be able to edit a list of tags. If there is something wrong with how I asked this question, please feel free to comment on that, too.
 
    