User prompt
Add return button to main menu
User prompt
set the screen aspect ratio to 9:16
User prompt
change background
User prompt
Ad music
User prompt
Please fix the bug: 'TypeError: LK.isPaused is not a function' in or related to this line: 'var isPaused = LK.isPaused();' Line Number: 369
User prompt
When we pause the game, there should be an option to return to the main menu.
User prompt
When we press the start button, the difficulties will appear, easy, normal and difficult, the notes will fall fast in easy, normal and difficult.
User prompt
add main menu and have a start button there
User prompt
get the score and combo at the top right
User prompt
take the score and combo to the left
User prompt
Enlarge the green area downwards by 2.5 times
Code edit (1 edits merged)
Please save this source code
User prompt
Rhythm Tap Challenge
Initial prompt
when game starts: set score to 0 set combo to 0 play music "ritim.mp3" repeat forever: create note at random position (sol, orta, sagĢ) move note down slowly wait 0.75 beat #when note touches pad and tapped: if y pozisyonu dogĢruysa: destroy note increase score by 10 increase combo by 1 if combo >= 3: increase score by 5 # bonus show effect "combo" play sound "click.wav" else: decrease score by 5 reset combo to 0 shake screenwhen note touches bottom of screen: destroy note decrease score by 5 reset combo to 0 play sound "fail.wav"
/**** * Initialize Game ****/ var game = new LK.Game({ backgroundColor: 0x000000 });
/****
* Initialize Game
****/
var game = new LK.Game({
backgroundColor: 0x000000
});