User prompt
can u make the obstacles even thicker but super thick
User prompt
make the obstacles a little thicker
User prompt
can u make a nice start screen with a border and nice text and when u have the start screen the game isnt playing yet so its pauzed but when u click continue it plays
User prompt
can u make an nice looking starter screen
User prompt
can u fix a bug because the game is not playing i just see the background but not the players and obstacles
User prompt
can u fix the bug because i cant see anything i just see blue
User prompt
can u make a nice rainbow border
User prompt
Please fix the bug: 'Uncaught TypeError: Graphics is not a constructor' in or related to this line: 'var border = new Graphics();' Line Number: 106
User prompt
can u make a nice color changing border around the game
User prompt
make it so that it doesnt only go to 1 but it will count infinitly
User prompt
make it so that when it goes through instantly do it to 1
User prompt
make it so that when the player gets through the hole in the middle of obstacle above and obstacle bottom that the score goes to 1
User prompt
make it so that there is a score bar above
User prompt
make it so that u cant see player2 when u are player but only when u jump
User prompt
make it so that it changes to player2 for 0.5 seconds
User prompt
make it so that when the player jumps it becomes the asset player2 for 1 second en then changes back to asset player
User prompt
make the player a little faster and the pipes also
User prompt
make the bounce animation that u can see the bounce when the player jumps.
User prompt
make a sort bouncing animation when the player jumps
User prompt
increase more the distance of the obstacles
User prompt
make the obsstacles more further from eachother so that the game doesnt get har
User prompt
make the obstacles a little bit mor further away from eachother
User prompt
make the obstacles as long as the border
User prompt
make the obstacle streched
===================================================================
--- original.js
+++ change.js
@@ -34,8 +34,17 @@
self.gravity = 0.25;
self.lift = -8;
self.flap = function () {
self.velocityY = self.lift;
+ // Add a bounce animation to the player when it jumps
+ var bounce = 0.5;
+ var bounceInterval = LK.setInterval(function () {
+ bounce *= -1;
+ self.y += bounce;
+ if (bounce < 0.05 && bounce > -0.05) {
+ LK.clearInterval(bounceInterval);
+ }
+ }, 50);
};
self.update = function () {
self.velocityY += self.gravity;
self.y += self.velocityY;