Commit 8712ddc0 by BellCodeEditor

save project

parent 4407f5bd
Showing with 2 additions and 1 deletions
...@@ -59,6 +59,7 @@ while True: ...@@ -59,6 +59,7 @@ while True:
num2 = random.randint(1,16) num2 = random.randint(1,16)
apple_x = num1 * 30 - 30 apple_x = num1 * 30 - 30
apple_y = num2 * 30 - 30 apple_y = num2 * 30 - 30
score += 10
else: else:
position.pop(0) position.pop(0)
...@@ -70,7 +71,7 @@ while True: ...@@ -70,7 +71,7 @@ while True:
# 将贪吃蛇的身体画上去 # 将贪吃蛇的身体画上去
for i in range(len(position)-1): for i in range(len(position)-1):
screen.blit(body, position[i]) screen.blit(body, position[i])
# 将果实画上去 # 将果实画上去
screen.blit(food, (apple_x,apple_y)) screen.blit(food, (apple_x,apple_y))
info = 'Score'+ str(score) info = 'Score'+ str(score)
......
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