這段簡單的代碼在幾秒鐘後(大約5)崩潰(窗口沒有響應)。幾秒後Pygame窗口沒有響應
import pygame
from pygame.locals import *
pygame.init()
screen = pygame.display.set_mode((640, 480), 0, 24)
#clock = pygame.time.Clock()
#font = pygame.font.Font(None, 32)
cycles = 0
while True:
screen.fill(0)
# text = font.render('Cycles : %d' % cycles, True, (255, 255, 255))
# screen.blit(text, (100, 100))
cycles += 1
pygame.display.update()
如果我去掉註釋行,我可以清楚地看到該程序47和50的
我使用Python 2.7和1.9.2 pygame的,視窗8之間顯示值時,失控的(64位)和Eclipse + PyDev。
我只能說:它適用於Python 2.7,PyGame 1.9.2,Linux Mint(32位),Geany。你從Eclipse或終端運行它嗎? – furas