Answers for "unity onclick handler"

C#
0

unity onclick object

void Update () {
     
 }
  void OnMouseDown(){
         // this object was clicked - do something
     Destroy (this.gameObject);
  }
Posted by: Guest on June-20-2020
0

Button onClick Listener in unity C#

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!");
    }
}
Posted by: Guest on July-09-2021

Code answers related to "unity onclick handler"

C# Answers by Framework

Browse Popular Code Answers by Language