// 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 import GameM from "../manager/GameM"; const { ccclass, property } = cc._decorator; @ccclass export default class CheckTouch extends cc.Component { onLoad() { this.node.on(cc.Node.EventType.TOUCH_START, this.click, this, true); } click() { GameM.commonData.hasTouch = true } }