본문 바로가기
Python/making games with python & pygame

ch2. pygame basics

by 청원뿔세포 2022. 8. 24.

1. 창 띄우기

import pygame
import sys
from pygame.locals import *
pygame.init()
DISPLATSURF = pygame.display.set_mode((400,300))
pygame.display.set_caption('hello world')
while True:
  for event in pygame.event.get():
    if event.type == QUIT:
      pygame.quit()
      sys.exit()
  pygame.display.update()

창 띄우기

- pygame.init( ) 을 통해 import 해온 pygame을 호출

- 종료 시 pygame.quit( ) 가 호출되기 전에 pygame 프로그램이 종료되면 IDLE가 중단되는 버그가 있다.

 

 

'Python > making games with python & pygame' 카테고리의 다른 글

3. Memorize Puzzle  (0) 2022.09.02

댓글