Commit 780a5443 by BellCodeEditor

save project

parent 20501d8c
Showing with 8 additions and 0 deletions
...@@ -38,6 +38,14 @@ while True: ...@@ -38,6 +38,14 @@ while True:
if event.key==locals.K_DOWN and heading!="up": if event.key==locals.K_DOWN and heading!="up":
heading="down" heading="down"
snakehead=down snakehead=down
if heading=="up":
y-=30
if heading=="left":
x-=30
if heading=="down":
y+=30
if heading=="right":
x+=30
xy.append((x,y)) xy.append((x,y))
xy.pop(0) xy.pop(0)
# 将背景图画上去 # 将背景图画上去
......
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