Update: CC - Key Down - AR Football 3 (905x4c8pna.js) 307 bytes modified

beta.r3js.org
Theunis Johannes Botha 2018-05-28 19:40:24 +02:00
parent 9b9af29cd1
commit c779698980
1 changed files with 19 additions and 0 deletions

View File

@ -11,5 +11,24 @@ if (data.keyCode === R3.System.Input.KEY_UP) {
);
}
if (data.keyCode === R3.System.Input.KEY_LEFT) {
R3.Event.Emit(
R3.Event.GAME_DATA,
{
type : 'left'
}
);
}
if (data.keyCode === R3.System.Input.KEY_RIGHT) {
R3.Event.Emit(
R3.Event.GAME_DATA,
{
type : 'right'
}
);
}
//@ sourceURL=keyDown.js