# 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 %}
