For the complete documentation index, see llms.txt. This page is also available as Markdown.

ReturnComponent

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" );
	}
}

Last updated