Updates the positioning of the radial menu according to the user's options.
using UnityEngine;
public class RadialMenuExample : MonoBehaviour
{
UltimateRadialMenu radialMenu;
void Start ()
{
// Store the Ultimate Radial Menu registered with the name: ExampleMenu
radialMenu = UltimateRadialMenu.ReturnComponent( "ExampleMenu" );
}
}