Pygame

Post on 14-May-2015

256 views 1 download

Transcript of Pygame

Python으로 Game 만들기

Python game library

Pygame install

%python_home%\Site-packages 폴더에 설치됩니다

Eclipse 설정

Site-packages폴더가 path에 등록되어있으면 됩니다. 테스트버전 Python3.2

Pygame HelloWorld

Pygame 흐름 초기화

-Pygame.init()

이벤트 처리

-while 안에서 pygame.event.get()

스크린 잠금/ 해제

-screen.lock() , srceen.unlock()

화면 업데이트

-pygame.display.update()

이미지 로드 후 마우스 이벤트 추가

Rect 그리기

To be Continued..