它立即退出,显示“进程以退出代码-1073740771(0xC000041D)完成 “
显示时间太长,不知道错误从哪里开始 但也许
screen.blit(stertmeunbackground,(0,-10))
Startingbutton.update()
for event in pygame.event.get():
if event.type == MOUSEBUTTONDOWN:
if Startingbutton.rect.collidepoint(pygame.mouse.get_pos()):
starting = False
if event.type == QUIT:
running = False
pygame.quit()
exit()
pygame.display.flip()
class startingbutton(pygame.sprite.Sprite):
def __init__(self):
pygame.sprite.Sprite.__init__(self)
self.image = startbutton
self.rect = self.image.get_rect()
self.rect.x = 600
self.rect.y = 400
def update(self):
screen.blit(startbutton,(self.rect.x,self.rect.y))
pygame 1.9.6 pygame社区您好。 https://www.pygame.org/contribute.html
以退出代码-1073740771(0xC000041D)完成的进程 这是我跑步时得到的所有东西,但这是一个游戏,将显示屏幕,显示1秒钟后,它会自动离开:( 我尝试使用python和pycharm来运行它,都失败了