/EasyButtons

Add buttons to your inspector in Unity super easily with this simple attribute

Primary LanguageC#MIT LicenseMIT

Easy buttons for the unity default inspector

These tiny scripts add the ability to quickly show a button in the inspector for any zero-argument method.

How to use

  1. Add the EasyButtons folder to your Unity project

  2. Add the Button attribute to a method

    Code example

  3. You should now see a button at the top of the component with the same name as the method

    Button in the inspector

    Result

Notes

  • As mentioned in Issue #4 custom editors don't play well with EasyButtons. As a workaround you can Inherit from ObjectEditor instead of Editor, or manually draw the buttons using extension DrawEasyButtons method.