Olá, será que alguém poderia me ajudar a encontrar o erro? A nave não está movimentando e não consigo ver o porquê.
cc.Class({
extends: cc.Component,
properties: {
_acelerando: false,
},
onLoad: function () {
cc.SystemEvent.on(cc.SystemEvent.EventType.KEY_DOWN, this.teclaPressionada, this);
cc.SystemEvent.on(cc.SystemEvent.EventType.KEY_UP, this.teclaSolta, this);
},
teclaPressionada: function(event){
if(event.keyCode == cc.KEY.a){
this._acelerando = true;
}
},
teclaSolta: function(event){
if(event.keyCode == cc.KEY.a){
this._acelerando = false;
}
},
update: function (dt) {
if(this._acelerando){
this.node.x += 1;
}
},
});
Por favor, alguém me da uma luz. Obrigada.