Updates the description of the button information.
usingUnityEngine;publicclassRadialButtonInfoExample:MonoBehaviour{ // BE SURE TO ASSIGN THIS IN THE INSPECTOR //publicUltimateRadialMenu radialMenu;publicUltimateRadialButtonInfo buttonInfo;publicstring description ="This is an example description.";voidStart () { // Register the button to the menu.radialMenu.RegisterButton( MyCallback, buttonInfo ); // After the button info has been registered call the UpdateDescription function.buttonInfo.UpdateDescription( description ); }voidMyCallback () {Debug.Log( "MyCallback" ); }}