2025-11-06 10:59:34 +04:00
|
|
|
// Learn TypeScript:
|
|
|
|
|
// - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/typescript.html
|
|
|
|
|
// - [English] http://www.cocos2d-x.org/docs/creator/manual/en/scripting/typescript.html
|
|
|
|
|
// Learn Attribute:
|
|
|
|
|
// - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/reference/attributes.html
|
|
|
|
|
// - [English] http://www.cocos2d-x.org/docs/creator/manual/en/scripting/reference/attributes.html
|
|
|
|
|
// Learn life-cycle callbacks:
|
|
|
|
|
// - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/life-cycle-callbacks.html
|
|
|
|
|
// - [English] http://www.cocos2d-x.org/docs/creator/manual/en/scripting/life-cycle-callbacks.html
|
|
|
|
|
|
|
|
|
|
import GameData from "./GameData";
|
2025-11-07 14:28:59 +04:00
|
|
|
import SoundManager from "./SoundsManager";
|
2025-11-06 10:59:34 +04:00
|
|
|
|
|
|
|
|
const {ccclass, property} = cc._decorator;
|
|
|
|
|
|
|
|
|
|
@ccclass
|
|
|
|
|
export default class NewClass extends cc.Component {
|
|
|
|
|
|
|
|
|
|
@property(cc.Label)
|
|
|
|
|
label: cc.Label = null;
|
|
|
|
|
|
|
|
|
|
// LIFE-CYCLE CALLBACKS:
|
|
|
|
|
|
|
|
|
|
// onLoad () {}
|
|
|
|
|
|
|
|
|
|
onLoad () {
|
|
|
|
|
this.label.string = GameData.instance.getScore().toString();
|
2025-11-07 14:28:59 +04:00
|
|
|
SoundManager.instance.playMusic('Judgement', true);
|
2025-11-06 10:59:34 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// update (dt) {}
|
|
|
|
|
}
|