Skip to content

Commit

Permalink
better spaceships
Browse files Browse the repository at this point in the history
  • Loading branch information
vpoulailleau committed Jan 9, 2024
1 parent 1cc7e88 commit f8e6898
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 2 deletions.
Binary file modified space_collector/viewer/images/spaceships/attacker.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified space_collector/viewer/images/spaceships/collector.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified space_collector/viewer/images/spaceships/explorator.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion space_collector/viewer/spaceship.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
0: (255, 128, 128, 255),
1: (64, 255, 64, 255),
2: (255, 255, 0, 255),
3: (0, 128, 255, 255),
3: (32, 196, 255, 255),
}


Expand Down
2 changes: 1 addition & 1 deletion space_collector/viewer/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def __init__(self) -> None:
self.score = Score()
self.input_queue: Queue = Queue()
self.spaceships: list[SpaceShip] = [Attacker() for _ in range(5)]
self.spaceships.extend([Collector() for _ in range(5)])
self.spaceships.extend([Collector() for _ in range(30)])
self.spaceships.extend([Explorator() for _ in range(5)])
# self.spaceships_sprite_list = arcade.SpriteList()

Expand Down

0 comments on commit f8e6898

Please sign in to comment.