Inline Button Attribute

The inline button adds a button to the end of a property.

// Inline Buttons:
[InlineButton("A")]
public int InlineButton;

[InlineButton("A")]
[InlineButton("B", "Custom Button Name")]
public int ChainedButtons;

[InlineButton("C", SdfIconType.Dice6Fill, "Random")]
public int IconButton;

private void A()
{
    Debug.Log("A");
}

private void B()
{
    Debug.Log("B");
}

private void C()
{
    Debug.Log("C");
}