Commit da6b32ab by BellCodeEditor

save project

parent e0d88407
Showing with 3 additions and 3 deletions
...@@ -144,11 +144,11 @@ while True: ...@@ -144,11 +144,11 @@ while True:
if score > old_score: if score > old_score:
score_audio.play() score_audio.play()
old_score = score old_score = score
scoresurf = basic_fone.render("第1名" + str(one),True,(255,0,0)) scoresurf = basic_font.render("第1名" + str(one),True,(255,0,0))
screen.blit(scoresurf,(850,50)) screen.blit(scoresurf,(850,50))
scoresurf = basic_fone.render("第2名" + str(two),True,(255,0,0)) scoresurf = basic_font.render("第2名" + str(two),True,(255,0,0))
screen.blit(scoresurf,(850,80)) screen.blit(scoresurf,(850,80))
scoresurf = basic_fone.render("第3名" + str(three),True,(255,0,0)) scoresurf = basic_font.render("第3名" + str(three),True,(255,0,0))
screen.blit(scoresurf,(850,110)) screen.blit(scoresurf,(850,110))
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))
......
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