colorBlock/assets/Script/Reduce.ts
YZ\249929363 4ca3daaa48 提交
2025-06-26 14:44:43 +08:00

35 lines
698 B
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
const {ccclass, property} = cc._decorator;
@ccclass
export default class NewClass extends cc.Component {
@property({type: [cc.SpriteFrame], tooltip:"方块颜色图片"})
Block_Color : Array<cc.SpriteFrame> = [];
@property(cc.Label)
level: cc.Label = null;
// LIFE-CYCLE CALLBACKS:
onLoad () {
}
start () {
}
// update (dt) {}
}