How can I have a custom inspector apply to several types? they all derive from the same base but that didn't seem to help...
[CustomEditor(typeof(Base))]
class BaseEditor
Applied to the base but to none of the derived types.
[CustomEditor(typeof(Base))]
[CustomEditor(typeof(Derived1))]
[CustomEditor(typeof(Derived2))]
class BaseEditor
Didn't even compile...