Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
Resource icon

Pygame pong part 4 - Scoreboard

In part 4 we will create a scoreboard placed at the top of the pong table
In the while loop add

Python:
# Draw the scoreboard to screen
    board = pygame.Surface([window[0], 40])
    board.fill((60,60,60))
    screen.blit(board, (0,0))...
You do not have permission to view the full content of this resource. Log in or register now.
Back
Top Bottom