Oct-17-2018, 08:16 PM
I am fairly new to Python and am writing a very basic game. Essentially all we are doing is copying and understanding snippets of code
but for some reason, this script for "gravity" won't work as well as the whole movement system despite it being completely accurate:
Any help would be much appreciated!
but for some reason, this script for "gravity" won't work as well as the whole movement system despite it being completely accurate:
user_input = pygame.key.get_pressed() if user_input[pygame.K_UP]: player.move(0,-2) elif player.rect.y < (height -60): player.move(0,5) if user_input[pygame.K_DOWN]: player.move(0,2) if user_input[pygame.K_LEFT]: player.move(-2,0) if player.rect.x < 0: player.rect.x= width -1 if user_input[pygame.K_RIGHT]: player.move(2,0) if player.rect.x > width: player.rect.x= -59
Any help would be much appreciated!
