Lode Runner version 2.21c, AI_VERSION=4

(1) Add gamepad support:
   (1.1) xinput controller is better, Microsoft Edge only support Xinput devices
   (1.2) Browser support tables: http://caniuse.com/#feat=gamepad
   (1.3) gamepad test page: http://html5gamepad.com/

(2) Add color themes selection
(3) More control key support: add "QWE ASD" and ",." keyboard support
(4) Rewrite editor function for more compatible with browser
(5) Maybe get bigger play screen, change scale step from 25% to %5
Cette révision appartient à :
simon_hung
2017-01-01 22:33:58 +08:00
Parent dc96a5ac8d
révision 675e52fa90
78 fichiers modifiés avec 1878 ajouts et 1317 suppressions
+2 -4
Voir le fichier
@@ -121,8 +121,6 @@ function soundPlay(name)
function soundStop(name)
{
//if(soundDisable()) return;
if(typeof name == "string") {
return createjs.Sound.stop(name);
} else {
@@ -137,7 +135,7 @@ function soundPause(name)
if(typeof name == "string") {
return createjs.Sound.pause(name);
} else {
name.pause();
name.paused=true; //SoundJS 0.6.2 API Changed, 8/28/2016
}
}
@@ -148,7 +146,7 @@ function soundResume(name)
if(typeof name == "string") {
return createjs.Sound.resume(name);
} else {
name.resume();
name.paused=false; //SoundJS 0.6.2 API Changed, 8/28/2016
}
}