ImplementationSelector
ImplementationSelector copied to clipboard
Open-source unity editor extension that allows you to automatically select inherited implementations of a base class directly on the editor.
Results
1
ImplementationSelector issues
Sort by
recently updated
recently updated
newest added
Add new functionality to filter possible serialized types ``` interface IInterface { } [SelectImplementationTag("Potato")] class A : IInterface { } [SelectImplementationTag("Banana")] class B : IInterface { } public SomeClass :...
enhancement