Commit db519cd0 by BellCodeEditor

auto save

parent f7f642a5
Showing with 2 additions and 2 deletions
...@@ -24,7 +24,7 @@ class Player(pygame.sprite.Sprite): # 悟空 ...@@ -24,7 +24,7 @@ class Player(pygame.sprite.Sprite): # 悟空
self.rect = self.image.get_rect() self.rect = self.image.get_rect()
self.rect.x = 150 self.rect.x = 150
self.rect.y = 400 self.rect.y = 400
sprite.score=1
# 创建一个窗口 # 创建一个窗口
screen = pygame.display.set_mode((1000, 600)) screen = pygame.display.set_mode((1000, 600))
FPS = pygame.time.Clock() # pygame时钟,控制游戏速度(帧数) FPS = pygame.time.Clock() # pygame时钟,控制游戏速度(帧数)
...@@ -40,7 +40,7 @@ hero = [pygame.image.load('hero1.png'), ...@@ -40,7 +40,7 @@ hero = [pygame.image.load('hero1.png'),
pygame.image.load('hero3.png'), pygame.image.load('hero3.png'),
pygame.image.load('hero4.png'), pygame.image.load('hero4.png'),
pygame.image.load('hero5.png')] pygame.image.load('hero5.png')]
basic_font = pygame.font.Font('STKAITI.TTF',32)
score_audio=pygame.mixer.Sound('score.wav') score_audio=pygame.mixer.Sound('score.wav')
index = 0 index = 0
y = 400 y = 400
......
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