> For the complete documentation index, see [llms.txt](https://docs.tankandhealerstudio.com/assets/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tankandhealerstudio.com/assets/ultimatejoystick/documentation/ultimatejoystick/static-methods/returncomponent.md).

# ReturnComponent

{% code fullWidth="true" %}

```csharp
using UnityEngine;

public class JoystickExample : MonoBehaviour
{
	UltimateJoystick joystick;

	void Start ()
	{
    		// Store the Ultimate Joystick registered with the name: Movement.
        	joystick = UltimateJoystick.ReturnComponent( "Movement" );
        	
        	// Now you can use the joystick variable.
                joystick.UpdatePositioning( 50, 50 );
	}
}
```

{% endcode %}
