Commit f7fcf79f by BellCodeEditor

save project

parent aae6bb0d
Showing with 8 additions and 1 deletions
......@@ -18,12 +18,15 @@ up = pygame.image.load('up.png')
down = pygame.image.load('down.png')
food = pygame.image.load('apple.png')
body = pygame.image.load('body.png')
my_font=pygame.font.Font('neuropol.ttf',18)
x,y=240,120
position=[(180,90),(180,120),(210,120),(x,y)]
apple_x=360
apple_y=300
score=0
setheading = "right"
snake_head = right
......@@ -60,6 +63,7 @@ while True:
num2=random.randint(1,16)
apple_x=30*num1-30
apple_y=30*num2-30
score+=10
else:
position.pop(0)
# 将背景图画上去
......@@ -68,7 +72,10 @@ while True:
screen.blit(snake_head, position[-1])
for i in range(len(position)-1):
screen.blit(body,position[i])
# 将果实画上去
# 将果实画上去
info="Score:"+str(score)
toxt=my_font.render(info,True,(0,0,0))
screen.blit(toxt,(540,10))
screen.blit(food, (apple_x, apple_y))
# 刷新画面
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