Removes this information from the button on 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 RemoveInfoFromButton function.buttonInfo.RemoveInfoFromButton(); }voidMyCallback () {Debug.Log( "MyCallback" ); }}