We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46a4e75 commit fcc4fe3Copy full SHA for fcc4fe3
top-python-game-engines/pygame/pygame_game.py
@@ -39,9 +39,7 @@ def __init__(self):
39
super(Player, self).__init__()
40
41
# Get the image to draw for the player
42
- player_image = str(
43
- Path.cwd() / "images" / "alien_green_stand.png"
44
- )
+ player_image = str(Path.cwd() / "images" / "alien_green_stand.png")
45
# Load the image, preserve alpha channel for transparency
46
self.surf = pygame.image.load(player_image).convert_alpha()
47
# Save the rect so we can move it
0 commit comments