diff --git a/3b588t2jz1.js b/3b588t2jz1.js new file mode 100644 index 0000000..4ea9a75 --- /dev/null +++ b/3b588t2jz1.js @@ -0,0 +1,65 @@ +if (GameLib.Utils.UndefinedOrNull(this.entityLoaded)) { + return; +} + +var touch = data; +var max = Math.max(touch.left, touch.right, touch.up, touch.down); + +var units = Math.floor(max / 150) + 1; + +if (typeof max === 'number') { + + if (max < 5) { + GameLib.Event.Emit( + GameLib.Event.KEY_DOWN, + { + code : 'ArrowUp' + } + ); + } else { + + if (max === touch.left) { + for (var i = 0; i < units; i++) { + GameLib.Event.Emit( + GameLib.Event.KEY_DOWN, + { + code : 'ArrowLeft' + } + ); + } + } + + if (max === touch.right) { + for (var i = 0; i < units; i++) { + GameLib.Event.Emit( + GameLib.Event.KEY_DOWN, + { + code : 'ArrowRight' + } + ); + } + } + + if (max === touch.up) { + GameLib.Event.Emit( + GameLib.Event.KEY_DOWN, + { + code : 'ArrowUp' + } + ); + } + + if (max === touch.down) { + GameLib.Event.Emit( + GameLib.Event.KEY_DOWN, + { + code : 'Space' + } + ); + } + + } +} + + +//# sourceURL=touchEnd.js \ No newline at end of file