Commit efad997f by BellCodeEditor

auto save

parent d6c58783
Showing with 13 additions and 10 deletions
...@@ -29,28 +29,31 @@ while True: ...@@ -29,28 +29,31 @@ while True:
if event.key == locals.K_UP and setheading!='down': if event.key == locals.K_UP and setheading!='down':
setheading='up' setheading='up'
snake_head=up snake_head=up
y=y-30
if event.key == locals.K_DOWN and setheading!='up': if event.key == locals.K_DOWN and setheading!='up':
setheading='down' setheading='down'
snake_head=down snake_head=down
y=y+30
if event.key == locals.K_RIGHT and setheading!='left': if event.key == locals.K_RIGHT and setheading!='left':
setheading='right' setheading='right'
snake_head=right snake_head=right
x=x+30
if event.key == locals.K_LEFT and setheading!='right': if event.key == locals.K_LEFT and setheading!='right':
setheading='left' setheading='left'
snake_head=left snake_head=left
x=x-30
if setheading=='right': # if setheading=='right':
x=x+30 # x=x+30
elif setheading=='left': # elif setheading=='left':
x=x-30 # x=x-30
elif setheading=='down': # elif setheading=='down':
y=y+30 # y=y+30
else : # else :
y=y-30 # y=y-30
v.append((x,y)) v.append((x,y))
v.pop(0) v.pop(0)
# 将背景图画上去 # 将背景图画上去
screen.blit(background, (990,990)) screen.blit(background, (0,0))
# 将贪吃蛇画上去 # 将贪吃蛇画上去
screen.blit(snake_head, v[-1]) screen.blit(snake_head, v[-1])
# 将贪吃蛇的身体画上去 # 将贪吃蛇的身体画上去
......
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