Commit 0fc987ea by BellCodeEditor

save project

parent 82587241
Showing with 7 additions and 0 deletions
......@@ -10,8 +10,10 @@ body = pygame.image.load('body.png')
up = pygame.image.load('up.png')
left = pygame.image.load('left.png')
down = pygame.image.load('down.png')
my_font=pygame.font.Font('neuropol',18)
x,y=240,120
position=[(180,90),(180,120),(210,120),(x,y)]
screen=0
apple_x=360
apple_y=300
setheading="right"
......@@ -46,6 +48,7 @@ while True:
num2=random.randint(0,16)
apple_x=num1*30-30
apple_y=num2*30-30
screen+=10
else:
position.pop(0)
position.append((x,y))
......@@ -54,5 +57,8 @@ while True:
for i in range(len(position)-1):
screen.blit(body,position[i])
screen.blit(food, (apple_x, apple_y))
info="score"+str(score)
text=my_font.render(info,True,(0,0,0))
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