Removes the button that this information is assigned to from the radial menu.
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 RemoveFromMenu function.buttonInfo.RemoveFromMenu(); }voidMyCallback () {Debug.Log( "MyCallback" ); }}