Commit 6f19a7c1 by BellCodeEditor

save project

parent 632910d2
Showing with 3 additions and 1 deletions
...@@ -66,6 +66,8 @@ while True: ...@@ -66,6 +66,8 @@ while True:
else: else:
position.pop(0) position.pop(0)
position.append((x, y)) position.append((x, y))
if x<0 or x>630 or y<0 or y>450:
exit()
#position.pop(0) #position.pop(0)
# 将背景图画上去 # 将背景图画上去
screen.blit(background, (0, 0)) screen.blit(background, (0, 0))
...@@ -78,7 +80,7 @@ while True: ...@@ -78,7 +80,7 @@ while True:
# 将果实画上去 # 将果实画上去
screen.blit(food, (apple_x, apple_y)) screen.blit(food, (apple_x, apple_y))
#绘制分数 #绘制分数
info='Score'+str(score) info='Score:'+str(score)
text=my_font.render(info,True,(0,0,0)) text=my_font.render(info,True,(0,0,0))
screen.blit(text,(540,10)) screen.blit(text,(540,10))
# 刷新画面 # 刷新画面
......
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