Code edit (2 edits merged)
Please save this source code
User prompt
Make the ducks have more space between them
User prompt
In the end if I win, I want only just to be written "You Win!" and nothing more
User prompt
I also want it to be in the middle and a button saying "Play again"
Code edit (2 edits merged)
Please save this source code
User prompt
Make the ducks have more space between them
===================================================================
--- original.js
+++ change.js
@@ -121,9 +121,9 @@
for (var i = 0; i < 3; i++) {
// Change this from 5 to 7 to create 7 ducks
var duck = game.addChild(new Duck());
duck.x = startX; // Starting position of the duck
- duck.y = 600 + i * 200 + i * 20; // Aligned vertically
+ duck.y = 600 + i * 200 + i * 50; // Aligned vertically
ducks.push(duck);
}
var playerDuck = game.addChild(new PlayerDuck());
var finishLine = game.addChild(LK.getAsset('finishLine', {}));