User prompt
Make the initial speed of the game 7% faster
User prompt
Make it so "ERR" is the soundtrack of the game
User prompt
Fix the "shape_pop" sound no longer working
User prompt
Make the game have a soundtrack ("ERR")
User prompt
Remove everything that has to deal with background music from the game code
User prompt
Make sure testyy starts playing as soon as the game starts
User prompt
Make it so background music starts once the first shapped is matched
User prompt
Music still isn't working ensure that you are using the right assets and fix any bugs that might cause it
User prompt
I can't hear anything while playing
User prompt
Include a sound that activates once a shape is successfully matched (shape_pop in assets) and also make it so the game has a background music constantly playing (background_music in assets)
User prompt
Try implementing number 1
User prompt
Make the speed at the start of the game slightly faster
User prompt
Make it so the game gets gradually harder, the beginning being easy and the speed gradually increasing, also make so all 3 sides have the same shape speed. However make sure that things are still enjoyable.
User prompt
Make the texts much smaller and just above player's shapes on those sides
User prompt
Make some minimalistic UI elements to showcase the change we've just made (so the player knows at what score the left side gets enabled and when the right one gets enabled). Make the text disappear after the sides get enabled.
User prompt
Make some UI changes so the user can see when each side gets initialised. Make it a minimalistic look.
User prompt
Make it so the difficulty of the game gradually increases, so in the beginning, only the middle shape is enabled, after the score reaches 10, the one on the left edge of the screen enables too and after the score passes 20, the third one (in the right side) gets enabled.
User prompt
Migrate to the latest version of LK
User prompt
Make it a little more challenging once the score reaches 10
User prompt
Make it a little bit more challenging
User prompt
Fix Bug: 'ReferenceError: player is not defined' in this line: 'var shapeSpeed = Math.min(7.2 + Math.floor(player.score / 10), 28.8);' Line Number: 81
User prompt
Add a text on the locked sides that state when they unlock.
User prompt
Inform the player when the sides unlock
User prompt
Make it so on the locked sides it shows that they are locked and write at what score you unlock them. Also make it so you can't change the shape while it is locked.
User prompt
Make it so initially only the middle side is unlocked, then once the player gets to score 7 the left one unlocks and at 16 the right one too.
===================================================================
--- original.js
+++ change.js
@@ -77,9 +77,9 @@
LK.gui.topCenter.addChild(scoreTxt);
var shapeTypes = [Circle, Square, Triangle];
var shapeOrder = ['square', 'circle', 'triangle'];
var shapeSpawnInterval = 40;
- var shapeSpeed = Math.min(10.2 + Math.floor((leftPlayer.score + middlePlayer.score + rightPlayer.score) / 10), 30.8);
+ var shapeSpeed = Math.min(10.2 + Math.floor((leftPlayer.score + middlePlayer.score + rightPlayer.score) / 10) * (leftPlayer.score + middlePlayer.score + rightPlayer.score >= 10 ? 2 : 1), 30.8);
var shapeSpawnCounter = 0;
LK.on('tick', function () {
if (gameStarted) {
if (leftShapes.length === 0 || leftShapes.length > 0 && leftShapes[leftShapes.length - 1].y >= 2732 * 3 / 5) {