// 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.Label) // label: cc.Label = null; // @property // text: string = 'hello'; // LIFE-CYCLE CALLBACKS: // onLoad () {} start () { cc.systemEvent.on("keydown", this.move, this); } move(e1:cc.Event.EventKeyboard) { if(e1.keyCode == cc.macro.KEY.left) { cc.find("Canvas/大雄").x -= 20; } else if(e1.keyCode == cc.macro.KEY.right) { cc.find("Canvas/大雄").x += 20; } } // update (dt) {} }