vasyab / UnityPickers

Value selection controls for Unity game engine editor.
MIT License
33 stars 3 forks source link

causes compile errors in a project with custom inspectors #2

Closed mjholtzem closed 6 years ago

mjholtzem commented 6 years ago

If UnityPickers is put into a project with any custom inspectors you will get the following compile error

'Editor' is a 'namespace' but is used like a 'type'

vasyab commented 6 years ago

I believe using fully qualified class name as your inspector base class UnityEditor.Editor would help. I will consider not using Editor as namespace.

mjholtzem commented 6 years ago

fully qualified class name would resolve the error, but that's probably too much of a burden on most projects. Especially since in most cases it would involve modifying tools from the asset store

mjholtzem commented 6 years ago

btw Pathfinder : Kingmaker looks really well done!

vasyab commented 6 years ago

Thanks! :)

vasyab commented 6 years ago

fixed