Initial Commit: CC - Touch Start (2leaoar72c.js)

beta.r3js.org
-=yb4f310 2017-11-21 17:32:27 +01:00
parent 676b4d766a
commit 0eaa7b2cdb
1 changed files with 25 additions and 0 deletions

25
2leaoar72c.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