jacobdufault / fullinspector

Full Inspector supercharges Unity's inspector
MIT License
111 stars 27 forks source link

Add auto-bindings attribute-based CustomPropertyDrawers #177

Open jacobdufault opened 7 years ago

jacobdufault commented 7 years ago

Context

Example:

[CustomPropertyDrawer(typeof(WidgetAttribute))]
public class WidgetDrawer : PropertyDrawer
{
    // etc etc etc
}
 
public class Thing : BaseBehavior
{
    [Widget] public string m_Widget;
}