I have two enums that hold information. The first is which character you’re selecting and then the second is for equipment.
It looks something like this
public enum Classes {Soldier, Medic};
public enum SoldierEquip{Rocket, Shotgun, Shovel};
public enum MedicEquip{Syringe, Defib, Medkit};
I’m using the inspector to set this information up and I wanted to know if there was any way to make it so that when Soldier is selected as the class that only the soldier equipment shows up as options.
Thanks for any help.