gpt4 book ai didi

python - Pygame 窗口在退出时卡住

转载 作者:行者123 更新时间:2023-11-28 18:07:17 24 4
gpt4 key购买 nike

我是 python 的新手,也是 pygame 的新手。我正在尝试使用 pygame。所有程序似乎都运行良好,除非我尝试退出。窗口卡住(“应用程序无响应”),我不得不强制退出它。我正在使用 OSX、python 3.6,如果重要的话,我会通过 sublime text 运行它。代码如下:

import pygame
done = False
size = (400,400)
screen = pygame.display.set_mode(size)

while done==False:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.display.quit()
pygame.quit()
done = True

pygame.display.quit()
pygame.quit()

感谢您的帮助!

最佳答案

试试这个,它对我有用:

import sys
import pygame

size = (400,400)
screen = pygame.display.set_mode(size)

while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
sys.exit()

关于python - Pygame 窗口在退出时卡住,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52846063/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com