当我关闭程序窗口时,程序冻结,然后我被迫强制退出程序。为什么在单击X /关闭按钮时程序不会关闭。 如果重要的话,我也在使用python 2.7。
import pygame
import os, sys
from itertools import *
from oryxsprites import *
from oryxbackground import *
running = True
while running:
backgroundmain()
pygame.display.set_caption('OryxGame')
#pygame.display.set_icon(biggrasstile)
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
答案 0 :(得分:4)
来自an article that sports code very similar to yours的引用:
窗口现在仍然存在,而'running'等于True,就是这样 将关闭窗口(通过单击X)。请注意,如果 你使用IDE进行Python编程,然后它可能会干扰 pygame的。这通常不是一个主要问题,但它可以阻止Pygame 窗口关闭正常。如果是这样,添加pygame.quit()应该解决 问题。
答案 1 :(得分:-1)
使用Python 3.2,pygame 1.9 win32,sys.exit()
是无用的(在在线tuto上看到)。
pygame.quit()
完美无缺