Is there a way to stylize EditorGUI.ObjectField?
I have an object field that accepts my subtype of scriptable object like this:
variable = EditorGUI.ObjectField(_rect, variable, typeof(MySOSubtype), false) as MySOSubtype;
I would like to apply a custom icon, change text or remove the picker. In the documentation I haven't seen anything that would allow me to do this. I also don't want the label, just the object field itself.
↧