// 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(cc.AudioClip) a1:cc.AudioClip = null; // @property(cc.Label) // label: cc.Label = null; // @property // text: string = 'hello'; // LIFE-CYCLE CALLBACKS: // onLoad () {} start () { this.node.on("mousedown",this.moveleft,this); } moveleft() { cc.find("Canvas/大雄").x -= 20; cc.audioEngine.play(this.a1, false, 1); //this.getComponent(cc.AudioSource).play(); } // update (dt) {} }