r3-custom-code/306204wy29.js

45 lines
777 B
JavaScript
Raw Normal View History

if (!this.entityLoaded) {
return;
}
if (!this.initialized) {
this.direction = this.entityLoaded.direction;
this.initialized = true;
}
if (data.keyCode === GameLib.System.Input.KEY_UP) {
if (this.direction.y === -1) {
return;
}
this.direction.y = 1;
this.direction.x = 0;
}
if (data.keyCode === GameLib.System.Input.KEY_DOWN) {
if (this.direction.y === 1) {
return;
}
this.direction.y = -1;
this.direction.x = 0;
}
if (data.keyCode === GameLib.System.Input.KEY_LEFT) {
if (this.direction.x === 1) {
return;
}
this.direction.y = 0;
this.direction.x = -1;
}
if (data.keyCode === GameLib.System.Input.KEY_RIGHT) {
if (this.direction.x === -1) {
return;
}
this.direction.y = 0;
this.direction.x = 1;
}
console.log(data);
//@ sourceURL=keyUp.js