Unity NGUI.Button使用

在菜單欄中打開

  • NGUI->Open->Widget Wizard使用工具生成Button

截屏2023-08-24 13.10.32.png

或者在Project中搜索Control
截屏2023-08-24 13.16.21.png

幾個(gè)設(shè)置需要注意的地方:

WeChate261a47172663d594a6d6815230cf83d.jpg
WeChat8db3cf8b034f44f79a0fd8e2f655f3e3.jpg

掛載腳本處理邏輯:


WeChat1bf8c712561122c27b1eab5cf24b226c.jpg
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class UIMainController : MonoBehaviour
{
    // Start is called before the first frame update

    [SerializeField]
    public UIButton loginButton;

    [SerializeField]
    public UIButton logoutButton;

    private void Awake()
    {
        UIEventListener.Get(loginButton.gameObject).onClick = OnClick;
        UIEventListener.Get(logoutButton.gameObject).onClick = OnClick;
    }

    void Start()
    {
        
    }

    public void OnClick(GameObject gameObject)
    {

    }

    // Update is called once per frame
    void Update()
    {
        
    }
}

Button動畫

在button上掛載Button Rotation等腳本
設(shè)置Duration和旋轉(zhuǎn)方向

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容