Compare commits

...

5 Commits

Author SHA1 Message Date
EggMan
a2f6bc2f9f changes 2024-05-06 09:22:22 -04:00
EggMan
228e3f91cb fixed alien bounds 2024-05-06 08:19:11 -04:00
EggMan
2a0301aefb Merge remote-tracking branch 'origin/master'
# Conflicts:
#	Main.py
2024-05-06 08:18:44 -04:00
EggMan
e8827f419e Merge remote-tracking branch 'origin/master' 2024-04-29 14:57:52 -04:00
EggMan
ae7c05c88d renamed a variabel 2024-04-26 09:45:31 -04:00

View File

@@ -21,7 +21,7 @@ SCREEN_TITLE = "Space Invaders"
PLAYER_SPEED = 1
PLAYER_BOUNDS = 32
ALIEN_BOUNDS = 32
ALIEN_BOUNDS = 16
@@ -236,7 +236,7 @@ class MyGame(arcade.Window):
# self.play_death_animation()
self.respawn()
else:
if DEBUG:
print("\n" * 100)
print("You scored: " + str(self.Score))
print("You died on level: " + str(self.level))
@@ -251,8 +251,8 @@ class MyGame(arcade.Window):
testx = random.randint(0, 5 + 100 - self.level * 5)
testy = random.randint(0, 11 + 100 - self.level * 5)
testx = 500
testy = 500
# testx = 500
# testy = 500
if self.alienCounterY < 0:
# Reset the X and Y counter variables