32 lines
628 B
TypeScript
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) {
|
|
}
|
|
}
|