unity on click code example
Example 1: unity assign button onclick
public Button yourButton;
void Start ()
{
Button btn = yourButton.GetComponent<Button>();
btn.onClick.AddListener(TaskOnClick);
}
void TaskOnClick()
{
Debug.Log ("You have clicked the button!");
}
Example 2: gameobject on click unity
private void OnMouseOver() {
Debug.Log("Hovering over GameObject");
}
Example 3: how to code button click unity
using UnityEngine;
using UnityEngine.UI;
using System.Collections;
public class ClickExample : MonoBehaviour {
public Button yourButton;
void Start () {
Button btn = yourButton.GetComponent<Button>();
btn.onClick.AddListener(TaskOnClick);
}
void TaskOnClick(){
Debug.Log ("You have clicked the button!");
}
}
Example 4: unity click object
void OnMouseDown()
{
Destroy (this.gameObject);
}
Example 5: unity onclick object
void Update () {
}
void OnMouseDown(){
Destroy (this.gameObject);
}