下面主要给大家分享一下ngui的用法和详细的步骤,主要步骤如下:
1、打开UI向导
2、选择UI样式
3、UI面板
4、添加小工具
5、选择类型,拖入图集和字体集
6、拖入图集和字体集,选择控件模板
7、添加
8、结果
按钮事件
在面板上添加一个按钮
创建代码TestPanel如下:
- [csharp] view plaincopy在CODE上查看代码片派生到我的代码片
- using UnityEngine;
- using System.Collections;
- public class TestPanel : MonoBehaviour
- {
- public GameObject button;
- // Use this for initialization
- void Start()
- {
- button = transform.FindChild("Button").gameObject;
- //给按钮添加NGUI委托事件
- UIEventListener.Get(button).onClick += TestButton;
- }
- // Update is called once per frame
- void Update()
- {
- }
- void TestButton(GameObject go)
- {
- Debug.Log("你点击了"+go.name);
- }
- }
将代码拖到panel上