Enables the button on the radial menu that this button information is assigned to.
usingUnityEngine;publicclassRadialButtonInfoExample:MonoBehaviour{ // BE SURE TO ASSIGN THIS IN THE INSPECTOR //publicUltimateRadialMenu radialMenu;publicUltimateRadialButtonInfo buttonInfo;voidStart () { // Register the button to the menu.radialMenu.RegisterButton( MyCallback, buttonInfo ); // After the button info has been registered, then call the EnableButton function.buttonInfo.EnableButton(); }voidMyCallback () {Debug.Log( "MyCallback" ); }}