Updates the text associated with the button information.
usingUnityEngine;publicclassRadialButtonInfoExample:MonoBehaviour{ // BE SURE TO ASSIGN THIS IN THE INSPECTOR //publicUltimateRadialMenu radialMenu;publicUltimateRadialButtonInfo buttonInfo;publicstring text ="Example";voidStart () { // Register the button to the menu.radialMenu.RegisterButton( MyCallback, buttonInfo ); // After the button info has been registered, then call the UpdateText function.buttonInfo.UpdateText( "Example" ); }voidMyCallback () {Debug.Log( "MyCallback" ); }}