Skip to content
Advertisement

Pong in Pygame won’t count score

This is what I’ve got set-up, and I don’t want to be hand-fed the code as this is for a school project. I am still working on collision but I am not sure why the score being displayed isn’t being updated. I tried to set up the score update as a Dot method and then implement that method into the Game class then use the update method to try and update the displayed scores to show the new scores in the event that the ball hits either edge.

JavaScript

Advertisement

Answer

Look at your Game.update() method. Right now it looks like this:

JavaScript

Those last two lines are just statements. You’re not changing the values of those scores using assignment, addition, subtraction or anything else.

If I were you I’d consider using your score1_update() and score2_update() methods in here. Of course, since those methods both start from zero, you’ll need to be sure to add their results to the scores, not just assign the scores to the results of those methods.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement