-
Notifications
You must be signed in to change notification settings - Fork 0
/
8_frame.py
37 lines (26 loc) · 1.04 KB
/
8_frame.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import pygame
##########################################################################################################
#기본 초기화 (반드시 해야 하는 것들)
pygame.init() #초기화 (반드시 필요)
#화면 크기 설정
screen_width = 480 #가로 크기
screen_height = 640 #세로 크기
screen = pygame.display.set_mode((screen_width, screen_height))
#화면 타이틀 설정
pygame.display.set_caption("Nado Game") #게임 이름
#FPS
clock = pygame.time.Clock()
##########################################################################################################
#1. 사용자 게임 초기화 (배경 화면, 게임 이미지, 좌표, 속도, 폰트 등)
running = True
while running:
dt = clock.tick(30)
#2. 이벤트 처리 (키보드, 마우스)
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
#3. 게임 캐릭터 위치 정의
#4. 충돌 처리
#5. 화면에 그리기
pygame.display.update()
pygame.quit()