배경1 pygame_(2)_배경, 로고 import pygame def main(): pygame.init() # 타이틀 pygame.display.set_caption("MYGAME") #게임 이름 # 화면 크기 설정 screen_width = 480 #가로 크기 screen_height = 640 #세로 크기 screen = pygame.display.set_mode((screen_width, screen_height)) #screen = pygame.display.set_mode((480, 640)) # 로고 설정 logo = pygame.image.load("로고 이미지 경로") pygame.display.set_icon(logo) # 배경 이미지 불러오기 background = pygame.image.load("배경 이미지 경로") .. 2021. 11. 4. 이전 1 다음 반응형