diff --git a/js/initialization.js b/js/initialization.js index a22adf86f..0d39edbd3 100644 --- a/js/initialization.js +++ b/js/initialization.js @@ -66,7 +66,8 @@ function initialize(a) { speedModifier: 0.73, speedUpKeyHeld: false, creationSpeedModifier: 0.73, - comboTime: 310 + comboTime: 310, + casualMode: true }; } else { settings = { diff --git a/js/main.js b/js/main.js index 5d8aae365..c7329bd0b 100644 --- a/js/main.js +++ b/js/main.js @@ -362,7 +362,11 @@ function showHelp() { } } - $("#inst_main_body").html("
The goal of Hextris is to stop blocks from leaving the inside of the outer gray hexagon.
" + (settings.platform != 'mobile' ? 'Press the right and left arrow keys' : 'Tap the left and right sides of the screen') + " to rotate the Hexagon." + (settings.platform != 'mobile' ? ' Press the down arrow to speed up the block falling': '') + "
Clear blocks and get points by making 3 or more blocks of the same color touch.
Time left before your combo streak disappears is indicated by the colored lines on the outer hexagon
The goal of Hextris is to stop blocks from leaving the inside of the outer gray hexagon.
" + (settings.platform != 'mobile' ? 'Press the right and left arrow keys' : 'Tap the left and right sides of the screen') + " to rotate the Hexagon." + (settings.platform != 'mobile' ? ' Press the down arrow to speed up the block falling': '') + "
Clear blocks and get points by making 3 or more blocks of the same color touch.
Time left before your combo streak disappears is indicated by the colored lines on the outer hexagon
Casual Mode
By Logan Engstrom & Garrett Finucane