Commit af1dd559 by BellCodeEditor

save project

parent c7b2947f
Showing with 6 additions and 3 deletions
...@@ -9,14 +9,17 @@ body=pygame.image.load("body.png") ...@@ -9,14 +9,17 @@ body=pygame.image.load("body.png")
# 创建一个窗口 # 创建一个窗口
screen = pygame.display.set_mode((800,600)) screen = pygame.display.set_mode((800,600))
x,y=240,120
while True: while True:
for event in pygame.event.get(): for event in pygame.event.get():
if event.type==locals.QUIT: if event.type==locals.QUIT:
exit() exit()
screen.blit(background,(0,0)) screen.blit(background,(0,0))
screen.blit(right,(120,120)) screen.blit(right,(x,y))
screen.blit(body,(90,120)) screen.blit(body,(90,120))
screen.blit(body,(60,120)) screen.blit(body,(60,120))
screen.blit(body,(60,90)) screen.blit(body,(60,90))
screen.blit(food,(360,360)) screen.blit(food,(360,360))
pygame.display.update() pygame.display.update()
\ No newline at end of file x=x+30
pygame.time.Clock().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