Commit 59671584 by BellCodeEditor

save project

parent 686c5f10
Showing with 6 additions and 2 deletions
File added
......@@ -14,7 +14,8 @@ class Block(pygame.sprite.Sprite): # 障碍物精灵类
# 障碍物绘制坐标
self.rect.x = 1000
self.rect.y = 500 - self.rect.height
self.score = 1
class Player(pygame.sprite.Sprite): # 悟空
def __init__(self, image):
super().__init__()
......@@ -49,7 +50,7 @@ road_x = 0
bg_x = 0
time = 0
gamestate = True
score = 0
block_list =pygame.sprite.Group() # 创建精灵组
while True:
......@@ -108,6 +109,9 @@ while True:
block_list.add(obstacle)
for sprite in block_list: # 遍历、展示障碍物精灵
sprite.rect.x -= 8
if sprite.rect.x<wukong.rect.x:
score += sprite.score
sprite.score=0
screen.blit(sprite.image, (sprite.rect.x, sprite.rect.y))
if sprite.rect.x <= 0-sprite.rect.width:
sprite.kill()
......
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