how to code a button in unity code example
Example 1: unity assign button onclick
public Button yourButton;
void Start ()
{
Button btn = yourButton.GetComponent
Example 2: how to declare an button in unity
using UnityEngine.UI;
public class PlayerDash : MonoBehaviour
{
public Button your_button;