Commit f30dd834 by BellCodeEditor

save project

parent 17562b60
Showing with 3 additions and 1 deletions
...@@ -23,6 +23,7 @@ jumpstate='running' ...@@ -23,6 +23,7 @@ jumpstate='running'
y=400 y=400
t=30 t=30
bg_x=0 bg_x=0
road_x=0
obs=random.choice([apple,stone,cacti]) obs=random.choice([apple,stone,cacti])
rect=obs.get_rect() rect=obs.get_rect()
rect.x=1000 rect.x=1000
...@@ -57,7 +58,8 @@ while True: ...@@ -57,7 +58,8 @@ while True:
t=30 t=30
# 将背景图画上去 # 将背景图画上去
screen.blit(background, (0, 0)) screen.blit(background, (0, 0))
screen.blit(road, (0, 500)) road_x-=8
screen.blit(road, (road_x, 500))
screen.blit(wukong, (150, y)) screen.blit(wukong, (150, y))
if rect.x<=0-rect.width: if rect.x<=0-rect.width:
obs=random.choice([apple,stone,cacti]) obs=random.choice([apple,stone,cacti])
......
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