码迷,mamicode.com
首页 > 其他好文 > 详细

NGUI事件监听之UIEventListener的使用

时间:2014-11-14 22:39:05      阅读:403      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   ar   os   使用   sp   

  NGUI的事件绑定可以使用 UIButtonMessage

在一个游戏对象上添加Button Message组件:

bubuko.com,布布扣

在Button Message组件上添加要通知的游戏对象上所挂载的脚本的方法

Target:要通知的挂载脚本的游戏对象

Function Name:调用的方法

 

bubuko.com,布布扣

 

使用Button Message不是很灵活,还有一种是使用UIEventListener

在unity菜单上选择:Component->NGUI->Internal ->Event Listener

bubuko.com,布布扣

 然后把你要绑定的方法的脚本拖到Script中

bubuko.com,布布扣

bubuko.com,布布扣

然后在脚本中进行事件绑定

bubuko.com,布布扣

 代码:

bubuko.com,布布扣
    void Awake () 
    {    
        //获取需要监听的对象
        GameObject startGameButton = GameObject.Find("UI Root/startGameButton");
        //设置这个对象的监听事件
        UIEventListener.Get(startGameButton).onHover += ButtonHover;
        UIEventListener.Get(startGameButton).onClick +=PlayTapMusic ;
    }
    
    //计算按钮的点击事件
    void ButtonHover(GameObject button,bool state)
    {
        GameObject swipeSound = GameObject.Find("swipeSound");
        swipeSound.audio.Play ();        
    }
    
    //播放点击按钮的声音
    public void PlayTapMusic(GameObject button){
        GameObject tapSound = GameObject.Find("tapSound");
        tapSound.audio.Play ();
    }
View Code

 其实只是要在要绑定的对象上挂上一个脚本,然后使用UIEventListener的Get方法进行事件绑定

UIEventListener.Get(要监听的游戏对象).绑定的事件+=方法名;

 

NGUI事件监听之UIEventListener的使用

标签:style   blog   http   io   color   ar   os   使用   sp   

原文地址:http://www.cnblogs.com/townsend/p/4098272.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!