Commit 13a219bc by BellCodeEditor

save project

parent 03a55426
Showing with 3 additions and 3 deletions
......@@ -132,11 +132,11 @@ while True:
coin.play()
scoreFont=scorefont.render("分数:"+str(score),True,(255,255,255))
screen.blit(scoreFont,(880,20))
screenSurf = scorefont.render("第1名"+str(one),True,(255,255,255))
screenSurf = scorefont.render("第1名:"+str(one),True,(255,255,255))
screen.blit(screenSurf,(800,50))
screenSurf = scorefont.render("第2名"+str(two),True,(255,255,255))
screenSurf = scorefont.render("第2名:"+str(two),True,(255,255,255))
screen.blit(screenSurf,(800,80))
screenSurf = scorefont.render("第3名"+str(three),True,(255,255,255))
screenSurf = scorefont.render("第3名:"+str(three),True,(255,255,255))
screen.blit(screenSurf,(800,110))
# 刷新画面,
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