Commit 72ef4f19 by BellCodeEditor

save project

parent fb073721
Showing with 6 additions and 8 deletions
...@@ -32,17 +32,15 @@ while True: ...@@ -32,17 +32,15 @@ while True:
if jumpS == "run": if jumpS == "run":
jumpS = "up" jumpS = "up"
if jumpS == "up": if jumpS == "up":
if y>150: if yy > 0:
if yy>0: y-=yy
y-=yy yy-=2
yy-=2
else: else:
jumpS = "down" jumpS = "down"
if jumpS == "down": if jumpS == "down":
if y<400: if yy <= 30:
if yy <=30: y+=yy
y+=yy yy+=2
yy+=2
else: else:
jumpS = "run" jumpS = "run"
yy = 30 yy = 30
......
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