Commit abdb4162 by BellCodeEditor

save project

parent b5800a1e
Showing with 4 additions and 2 deletions
...@@ -30,18 +30,20 @@ while True: ...@@ -30,18 +30,20 @@ while True:
if event.key == locals.K_SPACE: if event.key == locals.K_SPACE:
jumpstate = 'UP' jumpstate = 'UP'
if jumpstate == 'UP': if jumpstate == 'UP':
if y > 0: if t > 0:
y -= t y -= t
t -= 2 t -= 2
else: else:
jumpstate = 'down' jumpstate = 'down'
if jumpstate == 'down': if jumpstate == 'down':
if y <= 30: if t <= 30:
y += t y += t
t += 2 t += 2
else: else:
jumpstate = 'runing' jumpstate = 'runing'
t = 30 t = 30
y = 400
wukong = hero[index] wukong = hero[index]
index += 1 index += 1
if index ==4: if index ==4:
......
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