unity set button onclick code example
Example 1: unity assign button onclick
public Button yourButton;
void Start ()
{
Button btn = yourButton.GetComponent<Button>(); //Grabs the button component
btn.onClick.AddListener(TaskOnClick); //Adds a listner on the button
}
void TaskOnClick()
{
Debug.Log ("You have clicked the button!");
}
Example 2: unity onclick object
void Update () {
}
void OnMouseDown(){
// this object was clicked - do something
Destroy (this.gameObject);
}