Skip to content
Snippets Groups Projects
Commit 1911b740 authored by Jakob Kirsch's avatar Jakob Kirsch
Browse files

adjust spawning rate

parent f5195bdc
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,7 @@ class Game(arcade.Window):
self.player_sprite.left = SCREEN_WIDTH / 2 + self.player_sprite.width
self.player_sprite.bottom = SCREEN_HEIGHT / 2 + self.player_sprite.height
self.all_sprites_list.append(self.player_sprite)
for i in range(0, 10000):
for i in range(0, 5000):
star = arcade.Sprite("images/star.png", SPRITE_SCALING)
star.set_position(random.randint(int(-10000), int(10000)), random.randint(int(-10000), int(10000)))
self.all_sprites_list.append(star)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment