35 lines
698 B
TypeScript
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) {}
|
|
}
|