Commit fa31a2af by BellCodeEditor

save project

parent 7ba8d638
Showing with 3 additions and 1 deletions
......@@ -109,12 +109,14 @@ while True:
for sprite in block_list: # 遍历、展示障碍物精灵
sprite.rect.x -= 8
screen.blit(sprite.image, (sprite.rect.x, sprite.rect.y))
if sprite.rect.x <= 0-sprite.rect.width:
if sprite.rect.x <= 0-sprite.rect.width:(
sprite.kill()
if pygame.sprite.collide_rect(wukong, sprite): # 精灵碰撞检测
gameover = pygame.image.load('gameover.png') # 游戏结束
screen.blit(gameover, (400, 200))
gamestate = False
else:
if (sprite,rect.x + sprite.rect.width)<wukong.rect.x:
scoreSurf = basic_font.render("分数:"+str(score),True,(255,0,0))
screen.blit(scoreSurf,(850,20))
......
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