// 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 { onLoad () { this.node.on("touchstart", this.show1, this) } show1() { //取得『提示框節點』 var node1 = cc.find("Canvas/提示框節點"); node1.active = false; } start () { } // update (dt) {} }