Version: 5.4
public UI.Button.ButtonClickedEvent onClick ;

説明

ボタンが押されたときにトリガされる UnityEvent

注意: 同じオブジェクト上で MouseDown の後 MouseUp でトリガされます。

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!"); } }