> 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/createemptybutton.md).

# CreateEmptyButton

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

```csharp
using UnityEngine;

public class RadialMenuExample : MonoBehaviour
{
	void Start ()
	{
		// Create 5 empty buttons for the radial menu to start with.
		for( int i = 0; i < 5; i++ )
			UltimateRadialMenu.CreateEmptyButton( "ExampleMenu" );
	}
}
```

{% endcode %}
