Commit f9b7210d by BellCodeEditor

save project

parent ee123878
Showing with 3 additions and 3 deletions
...@@ -135,11 +135,11 @@ while True: ...@@ -135,11 +135,11 @@ while True:
scoreSurf = basic_font.render("分数:"+str(score),True,(255,0,0)) scoreSurf = basic_font.render("分数:"+str(score),True,(255,0,0))
screen.blit(scoreSurf,(850,20)) screen.blit(scoreSurf,(850,20))
scoreSurf = basic_font.render("第1名:"+str(score),True,(255,0,0)) scoreSurf = basic_font.render("第1名:"+str(score),True,(255,0,0))
screen.blit(scoreSurf,(850,20)) screen.blit(scoreSurf,(850,50))
scoreSurf = basic_font.render("第2名:"+str(score),True,(255,0,0)) scoreSurf = basic_font.render("第2名:"+str(score),True,(255,0,0))
screen.blit(scoreSurf,(850,20)) screen.blit(scoreSurf,(850,80))
scoreSurf = basic_font.render("第3名:"+str(score),True,(255,0,0)) scoreSurf = basic_font.render("第3名:"+str(score),True,(255,0,0))
screen.blit(scoreSurf,(850,20)) screen.blit(scoreSurf,(850,110))
# 刷新画面 # 刷新画面
pygame.display.update() pygame.display.update()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment