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

32 lines
628 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 btnControl extends cc.Component {
static _instance: any;
_touch: boolean;
onLoad () {
this._touch = true;
}
start () {
}
setTouch(type){
this._touch = type;
}
update (dt) {
}
}