unity3d UIButton添加點擊事件


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

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM