unity toggle button code example
Example 1: 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 2: toggle unity c#
private bool togl;
if (Input.GetKey(KeyCode.A))
{
togl = !togl;
}
Example 3: how to use toggle in unity
using.UnityEgnigne.UI;
public class ToggleScript : MonoBehaviour
{
public Toggle toggle;
void Update()
{
if(toggle.isOn)
{
}
}
}