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

使用NGUI来制作技能的CD冷却效果

时间:2018-03-28 01:41:22      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:标志位   led   als   UI   one   upd   pre   释放   getc   

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class CDScripts : MonoBehaviour {



    public int cd_time = 2;         //技能的冷却速度
    public bool cd_isCan = false;       //是否可以释放技能的标志位

    private  UISprite cd_sprite;
    

    private void Awake()
    {
        cd_sprite = GameObject.Find("Sprite").GetComponent<UISprite>();
    }

    // Update is called once per frame
    void Update ()
    {
        if(Input.GetKeyDown(KeyCode.A)&&cd_isCan==false)
        {                       
            cd_sprite.fillAmount = 1.0f;
            cd_isCan = true;
        }
        if(cd_isCan==true)
        {
            cd_sprite.fillAmount -= (1f / cd_time) * Time.deltaTime;     //对技能的冷却效果进行减少
            if (cd_sprite.fillAmount <= 0.05)
            {
                cd_sprite.fillAmount = 0f;
               
                cd_isCan = false;       //技能的冷却时间满足了
            }
        }
        
    }
}

 

使用NGUI来制作技能的CD冷却效果

标签:标志位   led   als   UI   one   upd   pre   释放   getc   

原文地址:https://www.cnblogs.com/zhh19981104/p/8661285.html

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