Commit 99b43138 by BellCodeEditor

save project

parent a441e535
Showing with 1 additions and 1 deletions
...@@ -8,7 +8,7 @@ class Block(pygame.sprite.Sprite): ...@@ -8,7 +8,7 @@ class Block(pygame.sprite.Sprite):
self.image=random.choice([image1,image2,image3]) self.image=random.choice([image1,image2,image3])
self.rect=self.image.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() # 初始化
# 创建一个窗口 # 创建一个窗口
screen = pygame.display.set_mode((1000, 600)) screen = pygame.display.set_mode((1000, 600))
......
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