Deselects 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 DeselectButton function.buttonInfo.DeselectButton(); }voidMyCallback () {Debug.Log( "MyCallback" ); }}