whlie문 안에서 뭔가를 그리는 동작을 수행 할 때, 위와 같은 오류가 나온다면 다음과 같은 코드를 while문 안에 넣어주자.
for event in pygame.event.get():
if event.type==pygame.QUIT:
pygame.quit()
sys.exit()
참고 : stackoverflow.com/questions/14720377/pygame-window-hang
whlie문 안에서 뭔가를 그리는 동작을 수행 할 때, 위와 같은 오류가 나온다면 다음과 같은 코드를 while문 안에 넣어주자.
for event in pygame.event.get():
if event.type==pygame.QUIT:
pygame.quit()
sys.exit()
참고 : stackoverflow.com/questions/14720377/pygame-window-hang