Commit d0544481 by BellCodeEditor

save project

parent c41e4c70
Showing with 6 additions and 1 deletions
......@@ -11,6 +11,7 @@ body=pygame.image.load("body.png")
left=pygame.image.load("left.png")
up=pygame.image.load("up.png")
down=pygame.image.load("down.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
......@@ -49,8 +50,11 @@ while True:
num2=random.randint(1,16)
apple_x=num1*30-30
apple_y=num2*30-30
score+=10
else:
position.pop(0)
if x<0 or x>630 or y<0 or y>450:
exit()
screen.blit(background,(0,0))
screen.blit(snake_head,position[-1])
for i in range(len(position)-1):
......@@ -58,6 +62,6 @@ while True:
screen.blit(food,(apple_x,apple_y))
info="Score"+str(score)
text=my_font.render(info,True,(0,0,0))
screen.bilt(text,(540,10))
screen.blit(text,(540,10))
pygame.display.update()
FPSCLOCK.tick(3)
\ No newline at end of file
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