Commit f25450eb by BellCodeEditor

save project

parent 20eec10d
Showing with 1 additions and 1 deletions
...@@ -6,7 +6,7 @@ class Block (pygame.sprite.Sprite): ...@@ -6,7 +6,7 @@ class Block (pygame.sprite.Sprite):
def __init__(self ,image1 ,image2 ,image3 ): def __init__(self ,image1 ,image2 ,image3 ):
super().__init__() super().__init__()
self.image = random.choice([bush, stone, cacti]) self.image = random.choice([bush, stone, cacti])
self.rect = self.obstacle.get_rect() self.rect = self.image.get_rect()
self.rect.x = 1000 self.rect.x = 1000
self.rect.y = 500 - self.rect.height self.rect.y = 500 - self.rect.height
pygame.init() # 初始化 pygame.init() # 初始化
......
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