We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b78dd0e commit ff0f49fCopy full SHA for ff0f49f
main.py
@@ -412,13 +412,14 @@ def showGameOverScreen(crashInfo):
412
gameoverx = int((SCREENWIDTH - IMAGES['message'].get_width()) / 2)
413
gameovery = int(SCREENHEIGHT * 0.32)
414
415
- SCREEN_blit(IMAGES['gameover'], (gameoverx, gameovery))
416
417
for uPipe, lPipe in zip(upperPipes, lowerPipes):
418
SCREEN_blit(IMAGES['pipe'][0], (uPipe['x'], uPipe['y']))
419
SCREEN_blit(IMAGES['pipe'][1], (lPipe['x'], lPipe['y']))
420
421
SCREEN_blit(IMAGES['base'], (basex, BASEY))
+ SCREEN_blit(IMAGES['gameover'], (gameoverx, gameovery))
422
+
423
showScore(score)
424
425
playerSurface = pygame.transform.rotate(IMAGES['player'][1], playerRot)
0 commit comments