Disables the radial menu so that it is not visible and will not receive input.
usingUnityEngine;publicclassRadialMenuExample:MonoBehaviour{voidUpdate () { // If the space key was pressed this frame, then disable the menu.if( Input.GetKeyDown( KeyCode.Space ) )UltimateRadialMenu.Disable( "ExampleMenu" ); }}