Legacy Documentation: Version 5.3
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Button.onClick

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public var onClick: UI.Button.ButtonClickedEvent;

Description

UnityEvent that is triggered when the button is pressed.

Note: Triggered on MouseUp after MouseDown on the same object.

#pragma strict
public class ClickExample extends MonoBehaviour {
	public var yourButton: Button;
	function Start() {
		var btn: Button = yourButton.GetComponent.<Button>();
		btn.onClick.AddListener(TaskOnClick);
	}
	function TaskOnClick() {
		Debug.Log("You have clicked the button!");
	}
}
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!"); } }