CocosCreator implements skill cooling effect

CocosCreator implements skill cooling effect

CocosCreator realizes skill CD effect

There are skills in many games. After the player clicks the skill button, the skill will have a cooldown time. After the cooldown time is over, the skill can be used again.

It is very simple to achieve this effect in Cocos. You need to use the sprite component. First, drag the image of the skill button to the canvas.

Then create a new label under the skill button
Like this

Then create a new TS script and copy and paste the following code into it

const {ccclass, property} = cc._decorator;

@ccclass
export default class NewClass extends cc.Component {

    @property(cc.Sprite)
    skill:cc.Sprite = null; //Skill sprite @property(cc.Label)
    time_label:cc.Label = null; //Show the text of the remaining time of skill cooling @property
    time:number = 3; //Skill cooling time @property
    isshow_label:boolean = true; //Whether to display text onLoad(){
        this.skill.fillRange = 1; //When the game starts, the skill fill range is 1
    }

    update(dt:number){
        if(this.skill.fillRange != 1){//If the skill wizard's fill is not 1, it means that the skill has been usedthis.skill.fillRange += dt / this.time;//The value restored per frame for the skill is frame rate / skill cooldown timethis.time_label.string = Math.floor(((1 - this.skill.fillRange) * this.time)).toString();//Update the remaining time of the skill per frame//The remaining time of the skill is first 1 - the filling degree of the skill wizard and then * the skill cooldown time, and finally Math.floor roundedif(this.isshow_label == true){//If the text can be displayedthis.time_label.node.active = true;//Show the remaining time of the skill cooldown} }
        if(this.skill.fillRange == 1){//If the skill sprite's fill is 1, it means the skill has not been used yet this.skill.getComponent(cc.Button).interactable = true;//Start button this.time_label.node.active = false;//Hide the remaining time of skill cooldown}
    }

    onbtn(){//Event when the skill button is pressed this.skill.fillRange = 0;//Skill fill range is set to 0
        console.log("Skills used"); //Print log
        this.skill.getComponent(cc.Button).interactable = false; //disable button}

}

I have written detailed comments for each line of code.

Hang the written script on the skill button and bind the node

Can be modified as needed

  • Time is the cooldown time of the skill, you can change it as you like
  • Isshow_time is whether to display the text of the remaining cooldown time. If you don't want the text to be displayed, uncheck it. The default is to display

Writing code is not enough. You also need to do some settings for the skill button. You need to modify the sprite component and add a button component to the skill button.

Adjust according to the picture

  1. Type needs to change the sprite's rendering mode to fill
  2. Fill Type changes the filling method to fan-shaped filling
  3. Fill Center changes the center point of the sector. 0,0 is the lower left corner and 1,1 is the upper right corner. We want the sector to fill around the center point, so change it to 0.5,0.5
  4. Fill Range changes the total fill amount to 1

Finally, add the button component to the skill button

The bound event is onbtn. To make it look better, change the Transition of the button component to COLOR.

You're done. Click Run to see it.

Really good

When you click the skill button, just put the code in onbtn.

Just put it in here

For example, you can play a special effect animation when you press a skill button

The above is the details of how CocosCreator implements the skill cooling effect. For more information about CocosCreator skill cooling, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Detailed explanation of making shooting games with CocosCreator
  • How to draw a cool radar chart in CocosCreator
  • Detailed explanation of CocosCreator MVC architecture
  • Detailed explanation of CocosCreator message distribution mechanism
  • CocosCreator Getting Started Tutorial: Network Communication
  • How to create WeChat games with CocosCreator
  • Detailed explanation of how CocosCreator system events are generated and triggered
  • How to use a game controller in CocosCreator
  • Detailed explanation of CocosCreator Huarongdao digital puzzle
  • Detailed explanation of the fish school algorithm in CocosCreator game
  • Detailed explanation of CocosCreator optimization DrawCall
  • Detailed explanation of cocoscreater prefab
  • Python implements simple socket communication example code
  • Steps to build a real-time log tracker using Python and websocket
  • Java implements a simple multi-person chat room through Socket
  • How to use http and WebSocket in CocosCreator

<<:  How to implement Docker volume mounting

>>:  MySQL 5.5.27 installation graphic tutorial

Recommend

HTML framework_Powernode Java Academy

1. Framework A browser document window can only d...

How to display texture at the position of swipe in CocosCreator

Table of contents 1. Project requirements 2. Docu...

CentOS 7.x docker uses overlay2 storage method

Edit /etc/docker/daemon.json and add the followin...

Implementation example of JS native double-column shuttle selection box

Table of contents When to use Structural branches...

Server stress testing concepts and methods (TPS/concurrency)

Table of contents 1 Indicators in stress testing ...

JavaScript singleton mode to implement custom pop-up box

This article shares the specific code of JavaScri...

JavaScript Timer Details

Table of contents 1. Brief Introduction 2. setInt...

Instructions for recovering data after accidental deletion of MySQL database

In daily operation and maintenance work, backup o...

GZIP compression Tomcat and improve web performance process diagram

1. Introduction I recently worked on a project an...

Detailed explanation of MySql automatic truncation example

Detailed explanation of MySql automatic truncatio...

How to view and configure password expiration on Linux

With the right settings, you can force Linux user...

Introduction to document.activeELement focus element in JavaScript

Table of contents 1. The default focus is on the ...

A complete guide on how to query and delete duplicate records in MySQL

Preface This article mainly introduces the method...