unity3d UIButton添加點擊事件
public UIButton startButtonUser;//開始界面用戶登錄按鈕 void Awake() { //初始化參數 startButtonUser = transform.FindChild("start/ButtonUser").GetComponent<UIButton>(); //定義事件 EventDelegate btnUserEvent = new EventDelegate(this,"OnStartButtonUserClick"); startButtonUser.onClick.Add (btnUserEvent); }
定義事件
public void OnStartButtonUserClick() { Debug.Log ("On StartButtonUser Click..."); }