Initial Commit: CC - Touch Start (pgx4qp38d4.js)

beta.r3js.org
-=yb4f310 2017-11-22 10:24:51 +01:00
parent 16f3a1a706
commit 2dce2c4b95
1 changed files with 25 additions and 0 deletions

25
pgx4qp38d4.js Normal file
View File

@ -0,0 +1,25 @@
data.event.preventDefault();
var touches = Object.keys(data);
/**
* This code is rediculous - but it fixes the bug in ios where audio does not play
*/
GameLib.Event.Emit(
GameLib.Event.PLAY_AUDIO,
{
name : 'Audio - Flamethrower'
}
);
if (touches.length > 2) {
GameLib.Event.Emit(GameLib.Event.MOUSE_DOWN);
} else {
GameLib.Event.Emit(
GameLib.Event.STOP_AUDIO,
{
name : 'Audio - Flamethrower'
}
);
}
//@ sourceURL=touchStart.js