User prompt
Decrease characters size very little
User prompt
Increase the characters size
User prompt
Decrease the birds size a little more
User prompt
Increase the characters size
User prompt
Make the size of the bird Bigger
User prompt
Make the character bigger
User prompt
Please fix the bug: 'Uncaught TypeError: Cannot read properties of undefined (reading 'addEventListener')' in or related to this line: 'document.addEventListener('keydown', function (event) {' Line Number: 129
User prompt
when i press space bar on laptop then the playere shoudl jump
User prompt
Make it that the score only increases by 1
User prompt
After the player crosses one pipeŘ the score should only increase by 1
User prompt
Increase the speed of the game
User prompt
Decrease the gap in between the upper and lower pipes
User prompt
Also add pipes which r hanging from the above. Each pipe should be of an uneven size
User prompt
Increase the characters speed a lot
User prompt
Increase the characters speed a little more
User prompt
Increase the characters speed
User prompt
Add a little more gap in between the pipes
User prompt
Remove the gaps
User prompt
Add some gap between the pipes
User prompt
Perfect!
User prompt
Make the characters movement more smooth
User prompt
Now make the pipes on the surface very tall
User prompt
Remove the floating pipes
User prompt
Remove the pipe
User prompt
I want long polls on the surface
===================================================================
--- original.js
+++ change.js
@@ -119,7 +119,9 @@
LK.showGameOver();
}
}
};
-game.down = function (x, y, obj) {
- bird.up();
-};
\ No newline at end of file
+document.addEventListener('keydown', function (event) {
+ if (event.code === "Space") {
+ bird.up();
+ }
+});
\ No newline at end of file