zoukankan      html  css  js  c++  java
  • NGUI 3.5课程(五岁以下儿童)button-图片切换

    然后,我们去了一个样本,做一个button画面切换。

    特征,像球员“开始”和“暂停”。


    写TestButton.cs脚本:

    using UnityEngine;
    using System.Collections;
    
    public class TestButton : MonoBehaviour {
    	protected bool switchFlag = true;
    
    	// Use this for initialization
    	void Start () {
    	
    	}
    
    	void OnClick () {
    		if (this.switchFlag) {
    			this.GetComponent<UISprite> ().spriteName = "pause";
    			this.GetComponent<UIButton> ().normalSprite = "pause";
    			this.switchFlag = false;
    		}
    		else{
    			this.GetComponent<UISprite>().spriteName = "start";
    			this.GetComponent<UIButton>().normalSprite = "start";
    			this.switchFlag = true;
    		}
    	}
    }

    将脚本挂在simple button上


    然后。执行:执行效果例如以下:

    点击后,出现暂停button。





    版权声明:本文博客原创文章。博客,未经同意,不得转载。

  • 相关阅读:
    lambda函数用法
    Appium基础篇-元素定位
    python生成测试报告
    jmeter 设置中文
    jmeter bin下常用目录
    高效求幂运算
    欧几里德算法(求最大公因数)
    二分查找
    最大子序列和问题
    秋游小记
  • 原文地址:https://www.cnblogs.com/mfrbuaa/p/4676153.html
Copyright © 2011-2022 走看看