博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
unity 技能图标冷却
阅读量:6675 次
发布时间:2019-06-25

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

public skillPostion Postion;private Image image;private Image clodImage;public float coldeTimer;private float timer = 0;private bool iscold = false;void Awake(){      if (Postion==skillPostion.One|| Postion == skillPostion.Two||Postion == skillPostion.Three)    {        image = this.transform.GetComponent();        clodImage = this.transform.Find("coldimage").GetComponent();        clodImage.fillAmount = 1;        clodImage.enabled = false;    }  }// Update is called once per framevoid Update () {    if (iscold)    {        if (clodImage.enabled==false)        {            clodImage.enabled = true;        }        image.raycastTarget = false;        timer += Time.deltaTime;        clodImage.fillAmount = (coldeTimer-timer) / coldeTimer;        if (timer>=coldeTimer)        {            timer = 0;            clodImage.fillAmount = 1;            image.raycastTarget = true;            iscold = false;        }    }}public void OnPointerDown(PointerEventData eventData){    if (Postion == skillPostion.One || Postion == skillPostion.Two || Postion == skillPostion.Three)    {        iscold = true;    }    teanscriptManager.intance.playerAnimation.playanimation(Postion);}

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

你可能感兴趣的文章
c#winform选择文件,文件夹,打开指定目录方法
查看>>
traceroute
查看>>
如何划分man文档的章节
查看>>
微信公众号的分类
查看>>
分布式高可用存储(drbd+corosync+pacemaker+MooseFS)
查看>>
css3动画简介以及动画库animate.css的使用
查看>>
后台管理前端选型
查看>>
Nginx+Lua+Redis连接池
查看>>
hadoop编译
查看>>
Favicon
查看>>
ubuntu下安装与卸载软件方法-转载
查看>>
LeetCode]Integer to Roman AND ROman to Integer
查看>>
关于datepart计算weekday时多一天引起的问题及解决方法
查看>>
MySQL python 数据迁移脚本
查看>>
我的友情链接
查看>>
网站运维常用小技巧,排错必备
查看>>
Python中MySQLdb模块的安装
查看>>
windows下的grep
查看>>
find 详解
查看>>
【书签】valgrind - the dynamic analysis tools
查看>>