当我关闭程序窗口时,程序冻结,然后我被迫强制退出程序。为什么单击 X / Close 按钮时程序没有关闭。如果这很重要,我也在使用 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