技能冷却

效果

技能冷却_第1张图片


代码

[csharp] view plain copy print ?
  1. using UnityEngine;  
  2. using System.Collections;  
  3.   
  4. public class SkillControl : MonoBehaviour {  
  5.       
  6.     public UISprite sprite;  
  7.     bool state = false;  
  8.     // Use this for initialization  
  9.     void Start () {  
  10.       
  11.         sprite= sprite.GetComponent<UISprite>();  
  12.     }  
  13.       
  14.     // Update is called once per frame  
  15.     void Update () {  
  16.       
  17.         if(state)  
  18.         {  
  19.               
  20.             sprite.fillAmount-=0.01f;  
  21.               
  22.               
  23.             if(sprite.fillAmount==0)  
  24.             {  
  25.                 sprite.fillAmount=1f;  
  26.                 state=false;  
  27.             }  
  28.         }  
  29.           
  30.     }  
  31.       
  32.     void OnClick(GameObject btn)  
  33.     {  
  34.         if(btn.name=="skill")  
  35.         {  
  36.             state = true;  
  37.         }  
  38.     }  
  39. }  

你可能感兴趣的:(技能冷却)