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

【Unity3D自学记录】NGUI之UIButtonMessage长按

时间:2014-09-24 20:42:47      阅读:390      评论:0      收藏:0      [点我收藏+]

标签:unity3d

对UIButtonMessage进行修改

void OnPress (bool isPressed)
	{
		if (enabled)
		{
			if (((isPressed && trigger == Trigger.OnPress) ||
				(!isPressed && trigger == Trigger.OnRelease))) Send();
		}
        try
        {
            if (isPressed)
            {
                //按住
            }
            else
            {
                //松手
            }
        }
        catch (Exception e) {
            Debug.Log(e.Message);
        }
	}


【Unity3D自学记录】NGUI之UIButtonMessage长按

标签:unity3d

原文地址:http://blog.csdn.net/daijinghui512/article/details/39524085

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