博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
切换sprite
阅读量:6589 次
发布时间:2019-06-24

本文共 838 字,大约阅读时间需要 2 分钟。

using UnityEngine; using System.Collections;

public class BTN : MonoBehaviour {

       void Awake ()  { 

           //skill01

           GameObject btn_skill01_01 = GameObject.Find("UI Root (2D)/Camera/Anchor/Panel/btn_skill01_01");

          UIEventListener.Get(btn_skill01_01).onClick = ButtonClick_skill01_01;  

          GameObject btn_skill02_01 = GameObject.Find("UI Root (2D)/Camera/Anchor/Panel/btn_skill02_01");

          UIEventListener.Get(btn_skill02_01).onClick = ButtonClick_skill02_01;

          GameObject btn_skill03_01 = GameObject.Find("UI Root (2D)/Camera/Anchor/Panel/btn_skill03_01");

           UIEventListener.Get(btn_skill03_01).onClick = ButtonClick_skill03_01;

      }

     void ButtonClick_skill01(GameObject button)  {

        //Debug.Log("GameObject " + button.name);

       GameObject Sprite = GameObject.Find("UI Root (2D)/Camera/Anchor/Panel/Sprite(Light)"); 

       Sprite.GetComponent<UISprite>().spriteName ="Button";

    }

}

转载地址:http://vlzio.baihongyu.com/

你可能感兴趣的文章
asp.net 百度编辑器 UEditor 上传图片 图片上传配置 编辑器配置 网络连接错误,请检查配置后重试...
查看>>
第二阶段冲刺第八天,6月7日。
查看>>
centos6.6编译安装lnmp系列之nginx
查看>>
Java入门
查看>>
Linux基础-固化命令的方式grep
查看>>
poj 1002 487-3279
查看>>
add_header 'Cache-Control' 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0'
查看>>
WCF Ria Service“操作失败,指定的命名链接在配置中找不到”错误解决方法
查看>>
java的左移位(<<)和右移位(>>)和无符号右移(>>>)
查看>>
在网页浏览器中原生显示PDF文件
查看>>
升级后开机就提示“android.process.acore”停止执行 --分析 解决方式
查看>>
HTML5 CSS3专题 诱人的实例 CSS3打造百度贴吧的3D翻牌效果
查看>>
OC-内存管理的一些要点
查看>>
Recurrent Neural Network(3):LSTM Basics and 《Inside Out》
查看>>
Linux基础知识-文件管理
查看>>
西窗的雨
查看>>
ubuntu:nodejs安装
查看>>
11月8日PHP练习《留言板》
查看>>
JavaScript学习笔记 1
查看>>
问题007:JDK版本与JRE版本不同导致java.exe执行类文件错误 java.lang.UnsupportedClassVersionError错误...
查看>>