上传文件至 ''

This commit is contained in:
206530221 2021-06-22 20:49:11 +08:00
parent d8c94662df
commit d2daf277e5
1 changed files with 13 additions and 1 deletions

View File

@ -34,4 +34,16 @@ class Scoreboard():
# 将得分放在屏幕右上角
self.score_rect = self.score_image.get_rect()
self.score_rect.right = self.screen_rect.right - 20
self.score_rect.top = 20
self.score_rect.top = 20
def prep_high_score(self):
"""将最高得分转换为渲染的图像"""
high_score = int(round(self.stats.high_score, -1))
high_score_str = "{:,}".format(high_score)
self.high_score_image = self.font.render(high_score_str, True,
self.text_color, self.ai_settings.bg_color)
# 将最高得分放在屏幕顶部中央
self.high_score_rect = self.high_score_image.get_rect()
self.high_score_rect.centerx = self.screen_rect.centerx
self.high_score_rect.top = self.score_rect.top