mirror of
https://github.com/n0remac/game-jam-2020.git
synced 2025-12-06 17:13:12 -06:00
update readme
This commit is contained in:
@@ -16,4 +16,4 @@ This game can be setup and run with:
|
|||||||
|
|
||||||
## Instructions
|
## Instructions
|
||||||
Use WASD to move and the mouse to aim and fire.
|
Use WASD to move and the mouse to aim and fire.
|
||||||
Use left shift to cycle through different monster combinations and try to shoot the monsters in that order.
|
Use left shift to cycle through different monster combinations and try to shoot the monsters in that order to recieve a speed boost. Once all the monsters are gone you will move onto another level.
|
||||||
|
|||||||
@@ -227,6 +227,9 @@ class Game(arcade.Window):
|
|||||||
def on_update(self, delta_time):
|
def on_update(self, delta_time):
|
||||||
""" Movement and game logic """
|
""" Movement and game logic """
|
||||||
|
|
||||||
|
if len(self.enemy_list) == 0 and len(self.active_enemies)==0:
|
||||||
|
self.setup()
|
||||||
|
|
||||||
# Update Mobs
|
# Update Mobs
|
||||||
self.Mobs.update()
|
self.Mobs.update()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user