Commit 20fc4e6f by BellCodeEditor

save project

parent 3d4db0c4
Showing with 7 additions and 3 deletions
...@@ -30,22 +30,26 @@ while True: ...@@ -30,22 +30,26 @@ while True:
# 接收到退出事件后退出程序 # 接收到退出事件后退出程序
exit() exit()
if event.type == locals.KEYDOWN: if event.type == locals.KEYDOWN:
if event.key == locals.K_SPACE: if event.key == locals.K_SPACE and jumps == "running":
jumps="up" jumps="up"
if jumps=="up": if jumps=="up":
if t>=0: if t>=0 :
y-=t y-=t
t-=2 t-=2
else: else:
jumps="down" jumps="down"
if jumps=="down": if jumps=="down":
if t<=30:
if y<400:
y+=t y+=t
t+=2 t+=2
else: else:
jumps="running" jumps="running"
t=30 t=30
if jumps=="running":
......
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