Commit f9adeeec by BellCodeEditor

save project

parent c4f1708a
Showing with 4 additions and 4 deletions
...@@ -138,13 +138,13 @@ while True: ...@@ -138,13 +138,13 @@ while True:
score_audio.play() score_audio.play()
oldscore=score oldscore=score
scoreSurf = basic_font.render("score:"+str(score),True,(255,0,0)) scoreSurf = basic_font.render("score:"+str(score),True,(255,0,0))
screen.blit(scoreSurf,(850,20)) screen.blit(scoreSurf,(880,10))
scoreSurf = basic_font.render("第1名:"+str(one),True,(255,0,0)) scoreSurf = basic_font.render("第1名:"+str(one),True,(255,0,0))
screen.blit(scoreSurf,(850,60)) screen.blit(scoreSurf,(880,40))
scoreSurf = basic_font.render("第2名:"+str(two),True,(255,0,0)) scoreSurf = basic_font.render("第2名:"+str(two),True,(255,0,0))
screen.blit(scoreSurf,(850,90)) screen.blit(scoreSurf,(880,70))
scoreSurf = basic_font.render("第3名:"+str(thr),True,(255,0,0)) scoreSurf = basic_font.render("第3名:"+str(thr),True,(255,0,0))
screen.blit(scoreSurf,(850,120)) screen.blit(scoreSurf,(880,100))
# 刷新画面 # 刷新画面
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