Commit 3c64647b by BellCodeEditor

save project

parent 00331768
Showing with 8 additions and 1 deletions
......@@ -124,7 +124,14 @@ while True:
if score>old_score
score_audio.play()
old_score=score
scoreSurf=basic_font.render("分数:"+str(score))
scoreSurf=basic_font.render("分数:"+str(score),True,(255,255,255))
score.blit(scoreSurf,(880,20))
scoreSurf=basic_font.render("第一名:"+str(one),True,(255,255,255))
score.blit(scoreSurf,(880,50))
scoreSurf=basic_font.render("第二名:"+str(two),True,(255,255,255))
score.blit(scoreSurf,(880,80))
scoreSurf=basic_font.render("第三名:"+str(thr),True,(255,255,255))
score.blit(scoreSurf,(880,110))
......
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