下面主要给大家分享一下ngui的用法和详细的步骤,主要步骤如下:

1、打开UI向导


2、选择UI样式


3、UI面板


4、添加小工具


5、选择类型,拖入图集和字体集


6、拖入图集和字体集,选择控件模板


7、添加


8、结果

按钮事件



在面板上添加一个按钮

创建代码TestPanel如下:

  1. [csharp] view plaincopy在CODE上查看代码片派生到我的代码片 
  2. using UnityEngine;  
  3. using System.Collections;  
  4.   
  5. public class TestPanel : MonoBehaviour  
  6. {  
  7.     public GameObject button;  
  8.     // Use this for initialization  
  9.     void Start()  
  10.     {  
  11.         button = transform.FindChild("Button").gameObject;  
  12.         //给按钮添加NGUI委托事件  
  13.         UIEventListener.Get(button).onClick += TestButton;  
  14.     }  
  15.   
  16.     // Update is called once per frame  
  17.     void Update()  
  18.     {  
  19.   
  20.     }  
  21.   
  22.     void TestButton(GameObject go)  
  23.     {  
  24.         Debug.Log("你点击了"+go.name);  
  25.     }  
  26. }  

将代码拖到panel上