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

NGUI 3.5教程(五)按钮-图片的切换

时间:2015-03-18 17:37:45      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

向原创致敬http://blog.csdn.net/chenggong2dm/article/details/25716309

 

我们接着上一个例子,做一个按钮的图片切换。

功能,就像播放器的“开始”和“暂停”。

 

编写TestButton.cs脚本:

 

[csharp] view plaincopy技术分享技术分享
  1. using UnityEngine;  
  2. using System.Collections;  
  3.   
  4. public class TestButton : MonoBehaviour {  
  5.     protected bool switchFlag = true;  
  6.   
  7.     // Use this for initialization  
  8.     void Start () {  
  9.       
  10.     }  
  11.   
  12.     void OnClick () {  
  13.         if (this.switchFlag) {  
  14.             this.GetComponent<UISprite> ().spriteName = "pause";  
  15.             this.GetComponent<UIButton> ().normalSprite = "pause";  
  16.             this.switchFlag = false;  
  17.         }  
  18.         else{  
  19.             this.GetComponent<UISprite>().spriteName = "start";  
  20.             this.GetComponent<UIButton>().normalSprite = "start";  
  21.             this.switchFlag = true;  
  22.         }  
  23.     }  
  24. }  


将脚本挂在simple button上

 

技术分享

 

然后,运行:运行效果如下:

技术分享

点击后,出现暂停按钮。

技术分享

NGUI 3.5教程(五)按钮-图片的切换

标签:

原文地址:http://www.cnblogs.com/lindan929/p/4347603.html

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