修改成就显示位置

This commit is contained in:
星外之神 2022-08-01 11:38:51 +08:00
parent 177e426ed5
commit 93259a2380

View File

@ -218,8 +218,8 @@ class Menu(tool.State):
infoText = f"目前您一共完成了:玩玩小游戏{self.game_info[c.LITTLEGAME_COMPLETIONS]}轮;完成其他所有游戏模式以获得金向日葵奖杯!" infoText = f"目前您一共完成了:玩玩小游戏{self.game_info[c.LITTLEGAME_COMPLETIONS]}轮;完成其他所有游戏模式以获得金向日葵奖杯!"
infoImg = font.render(infoText , True, c.BLACK, c.LIGHTYELLOW) infoImg = font.render(infoText , True, c.BLACK, c.LIGHTYELLOW)
infoImg_rect = infoImg.get_rect() infoImg_rect = infoImg.get_rect()
infoImg_rect.x = x infoImg_rect.x = self.sunflower_trophy_rect.x
infoImg_rect.y = y infoImg_rect.y = self.sunflower_trophy_rect.bottom - 14
surface.blit(infoImg, infoImg_rect) surface.blit(infoImg, infoImg_rect)
def respondOptionButtonClick(self): def respondOptionButtonClick(self):