Is there a way to only have certain enum values available in the inspector? For example I have an enum full of objects, and if I select table I want a second enum with specific object ids to only show table1/table2/table3 instead of all the available objects.
public enum Objects
{
Chair,
Table,
Door
}
public enum ObjectIDs
{
Chair01,
Chair02,
Table01,
Table02,
Table03,
etc..
}