Skip to content
Advertisement

Flip sprite when changing the direction of movement

Today I started to learn pygame and python to eventually remake the simple game “Graphwar”. As my first project I chose to make a really simple 2d car game while following a tutorial, now I want to try something on my own. That is to make my cars to visually change direction by using pygame.transform.flip() when pressing A or D.

I’ve read multiple different tutorials on different sites but I can’t get nothing to work.

This is my code:

JavaScript

Advertisement

Answer

Create 2 images for each care (e.g.: CAR_LEFT and CAR_RGIHT) and assign the image for the first direction to the variable `CAR1:

JavaScript

Change the image when the button is pressed (Note that it is sufficient to call pygame.key.get_pressed() once in the application loop):

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