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