更新 'settings.py'

This commit is contained in:
206530212 2021-06-17 21:58:58 +08:00
parent 37a2b43fe9
commit 0456d571bf
1 changed files with 8 additions and 1 deletions

View File

@ -6,4 +6,11 @@ class Settings():
# 屏幕设置
self.screen_width = 1200
self.screen_height = 800
self.bg_color = (230, 230, 230)
self.bg_color = (230, 230, 230)
# 飞船的设置
self.ship_speed_factor = 0.3
# 子弹设置
self.bullet_speed_factor =1
self.ship_limit = 3