> 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/ultimateradialmenu/documentation/ultimateradialmenu/static-methods/clearmenu.md).

# ClearMenu

{% code overflow="wrap" lineNumbers="true" fullWidth="true" %}

```csharp
using UnityEngine;

public class RadialMenuExample : MonoBehaviour
{
	void Start ()
	{
		// Clear the radial menu to start, leaving 4 buttons on the menu.
		UltimateRadialMenu.ClearMenu( "ExampleMenu", 4 );
		
		// OR //
		
		// Just clear the menu.
		UltimateRadialMenu.ClearMenu( "ExampleMenu" );
	}
}
```

{% endcode %}
