Enables the radial menu so that it is visible and can be interacted with.
using UnityEngine;
public class RadialMenuExample : MonoBehaviour
{
void Update ()
{
// If the space key was pressed this frame, then enable the menu.
if( Input.GetKeyDown( KeyCode.Space ) )
UltimateRadialMenu.Enable( "ExampleMenu" );
}
}