public class ClassA: BaseClass { ... }
public class ClassB: BaseClass { ... }
public class ClassC: BaseClass { ... }
Now I want to be able to select one of these classes from a drop down menu in the inspector, and have it stored as either a string (i.e, “ClassA”), or as System.Type. Is that possible? I know I can simply use serializable strings and convert them, but I was hoping to find a less error-prone approach.
Edit:
Looks like I found what I wanted here: Bitbucket