0
私は自分のpgameに開始画面を追加しようとしています。ここ はコードです:モジュール 'pygame.display'に属性 'fill'がありませんか?
def game_intro():
intro = True
while intro:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
quit()
pygame.display.fill(BLACK)
largeText = pygame.font.Font('Arial',10)
textSurf, textRect = text_objects("this is a game", largeText)
textRect.centre = ((display_width/2), (display_height/2))
pygame.display.blit(textSurf, textRect)
pygame.display.update()
clock.tick(15)
pygame.display.update()
score = 000
# Game loop
game_intro()
、ここでは、私が取得エラーです:ここでは
Traceback (most recent call last):
File "/Users/harrisonj11/NetBeansProjects/game_test_jakob/src/game_test_jakob.py", line 167, in <module>
game_intro()
File
"/Users/harrisonj11/NetBeansProjects/game_test_jakob/src/game_test_jakob.py", line 157, in game_intro
pygame.display.fill(BLACK)
AttributeError: module 'pygame.display' has no attribute 'fill'
は、すべてのコードです:https://www.dropbox.com/s/63u9yrfzagerwhz/game_test_jakob.zip?dl=0