更新 'settings.py'

This commit is contained in:
206530233 2021-06-18 12:39:57 +08:00
parent 5e0600b85a
commit 40fa2b705e
1 changed files with 7 additions and 1 deletions

View File

@ -8,4 +8,10 @@ class Settings:
self.screen_height = 800
self.bg_color = (230, 230, 230)
#飞船设置
self.ship_speed = 1.5
self.ship_speed = 1.5
# 子弹设置
self.bullet_speed = 1.0
self.bullet_width = 3
self.bullet_height = 15
self.bullet_color = (60,60,60)
self.bullet_allowed = 3