Answers for "unity button"

C#
5

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!");
	}
}
Posted by: Guest on April-02-2020
0

unity gui button

if (GUILayout.Button("I am a regular Automatic Layout Button")){
    Debug.Log("Clicked Automatic Layout Button ");
}

if (GUI.Button(new Rect(10, 70, 50, 30), "I am a regular Button"))
    Debug.Log("Clicked Regular Button");
}
Posted by: Guest on November-24-2020

C# Answers by Framework

Browse Popular Code Answers by Language