Resets the position of the radial menu back to its original position.
usingUnityEngine;publicclassRadialMenuExample:MonoBehaviour{ // BE SURE TO ASSIGN THIS IN THE INSPECTOR //publicUltimateRadialMenu radialMenu;voidUpdate () { // If the escape key has been pressed...if( Input.GetKeyDown( KeyCode.Escape ) ) { // Reset the position of the menu on the screen.radialMenu.ResetPosition(); } }}