Enhanced game over experience: Added louder game over sound, improved game over animation, and added haptic feedback

This commit is contained in:
cmclark00 2025-03-30 19:02:27 -04:00
parent ce19427cca
commit 292ea656f8
6 changed files with 134 additions and 2 deletions

View file

@ -366,6 +366,12 @@ class MainActivity : AppCompatActivity() {
// Flag to track if high score screen will be shown
var showingHighScore = false
// Play game over sound and trigger animation
if (isSoundEnabled) {
gameMusic.playGameOver()
}
gameView.startGameOverAnimation()
// Show progression screen first with XP animation
showProgressionScreen(xpGained, newRewards)