Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
We are going to make sure that when a Game Over display screen pops up, any of our display objects currently in motion stop moving and the event listeners are deactivated. Aside from the visual display of our Game Over screen, we'll be adding a sound notification that will also help to trigger the event.
callGameOver() and place it after the setScore() function and before the drawBackground() function.local callGameOver = function()
gameIsActive set to false and pause the physics in the game. audio.play( gameOverSound )
gameIsActive = false
physics.pause()
shade = display.newRect( 0, 0, 570, 320 )
shade:setFillColor( 0, 0, 0, 255 )
shade.x = 240; shade.y = 160
shade.alpha = 0