Commit 9f2d544f by BellCodeEditor

save project

parent f50e292a
Showing with 3 additions and 1 deletions
...@@ -63,8 +63,11 @@ while True: ...@@ -63,8 +63,11 @@ while True:
n2=random.randint(1,16) n2=random.randint(1,16)
a_x=30*n1-30 a_x=30*n1-30
a_y=30*n2-30 a_y=30*n2-30
score+=10
else: else:
position.pop(0) position.pop(0)
if x<0 or x>630 or y<0 or y>450:
exit()
# 将背景图画上去 # 将背景图画上去
screen.blit(background, (0, 0)) screen.blit(background, (0, 0))
# 将贪吃蛇的头画上去 # 将贪吃蛇的头画上去
...@@ -75,7 +78,6 @@ while True: ...@@ -75,7 +78,6 @@ while True:
# 将果实画上去 # 将果实画上去
screen.blit(food, (a_x, a_y)) screen.blit(food, (a_x, a_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