cb/assets/Script/prop/Star.ts
2025-07-01 19:39:23 +08:00

51 lines
1.3 KiB
TypeScript

// Learn TypeScript:
// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html
// Learn Attribute:
// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html
// Learn life-cycle callbacks:
// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
import MapConroler from "../Map";
const {ccclass, property} = cc._decorator;
@ccclass
export default class Star extends cc.Component {
static _instance: any;
time: number = 60;
// mapInfo: number[][] = [];
@property(cc.SpriteAtlas)
star_SpriteFrame: cc.SpriteAtlas = null;
onLoad () {
}
start () {
}
init(time){
if(time) this.time = time;
this.node.getChildByName("time").active = true;
this.node.getChildByName("time").getComponent(cc.Label).string = this.time.toString();
this.schedule(this.updateTime, 1);
}
updateTime(){
this.time --;
this.node.getChildByName("time").getComponent(cc.Label).string = this.time.toString();
if(this.time <= 0){
this.unschedule(this.updateTime);
this.node.destroy();
MapConroler._instance.failLevel();
// this.node.destroy();
}
}
// update (dt) {}
}