Skip to content
Advertisement

Python: game image changes to an undesired position after adjusting image’s moving speed

I’m making a simple python game and there are 3 py files: alien_invasion, settings, ship. I would like the image position to be at the middle bottom of screen every time the game starts. It works when code are like the following:

JavaScript
JavaScript

ship.py:

JavaScript

settings.py:

JavaScript

Then I made changes to settings.py and ship.py to adjust the moving speed:

ship.py:

JavaScript

settings.py:

JavaScript

Then when I run the alien_invasion code, the image starts showing up at the left bottom of screen when game starts, which is not what I want.

My desired position: enter image description here

My undesired position: enter image description here

Advertisement

Answer

You need to set self.x after setting the location of self.rect:

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