Commit 7bbd009d by BellCodeEditor

auto save

parent 1a85c2fa
Showing with 2 additions and 3 deletions
...@@ -66,6 +66,7 @@ while True: ...@@ -66,6 +66,7 @@ while True:
else: else:
position.pop(0) position.pop(0)
# 贪吃蛇撞墙 # 贪吃蛇撞墙
# 将背景图画上去 # 将背景图画上去
screen.blit(background, (0, 0)) screen.blit(background, (0, 0))
# 将贪吃蛇的头画上去 # 将贪吃蛇的头画上去
...@@ -77,9 +78,7 @@ while True: ...@@ -77,9 +78,7 @@ while True:
# 将果实画上去 # 将果实画上去
screen.blit(food, (apple_x, apple_y)) screen.blit(food, (apple_x, apple_y))
# 绘制分数 # 绘制分数
info = "Score:"+ str(score)
text = my_font.render(info, True, (0, 0, 0))
screen.blit(text, (540, 10))
# 刷新画面 # 刷新画面
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