환경설정 & 프레임 [목차]환경설정[주요내용] 1. 환경설정vscode 로 진행했습니다.시작에 앞서 터미널 창에서 pip install pygame 설치 해주세요~import pygamepygame.init() # 초기화(반드시 필요) 1) 화면 크기 설정# 화면 크기 설정screen_width = 480 # 가로 크기screen_height = 640 # 세로 크기screen = pygame.display.set_mode((screen_width,screen_height)) 2) 화면 타이틀 설정#화면 타이틀 설정pygame.display.set_caption("Nado Game") # 게임 이름 3) 이벤트 루프 만들기(화면 꺼짐 방지)# 이벤트 루프running = True #게임이 진행중인..