[Python-pygame] 예제 실습 240123-2 import pygame # 1. 초기화 pygame.init() # 결과: (5, 0) # 2. 게임 화면 설정 -> 크기 고정 size = [400,900] screen = pygame.display.set_mode(size) title = "pygame" pygame.display.set_caption(title) # 3. 인게임 설정 -> 변수 clock = pygame.time.Clock() color = (52, 235, 186) # color picker black = (0,0,0) white = (255,255,255) player = pygame.image.load('C:/Users/admin/Desktop/pygame_images/pokemon.gif').convert_alpha() .. 2024. 1. 23. [Python-pygame] 예제 실습 240123-2 [전체구성]1. 초기화2. 게임 화면 설정 -> 크기 고정3. 인게임 설정 -> 변수4. 메인 이벤트- 4-1. FPS(Frame Per Second) 설정 (초당 주사율)- 4-2. 입력(키보드, 마우스) 감지예) p를 누르면 "pause" - 4.3. 입력, 시간에 따른 변화 예) 오버워치 트레이서 (역행) 3초 전 -> 현재 위치에서 과거 위치로. - 4.4. 전사작업(그리기) - 4.5. 업데이트 5. 종료 https://www.pygame.org/docs/ 2024. 1. 23. [anylink] (집컴가상머신으로연습) ip 변경 1. (anylink).bash_profile 변경[anylink@tmax ~]$ vi ~/.bash_profile44 export DAS_HOST=192.xxx.xxx.xxxanylink-anylink7-domains-anylink_domain/config 변경 ip2. (anylink) [anylink@tmax config]$ vi domain.xml[anylink@tmax config]$ pwd/home/anylink/anylink7/domains/anylink_domain/config기본 ip를 모두 192.xxx.xxx.xxx 로 변경.3. (jeus)/home/anylink/anylink7/nodemanager[anylink@tmax nodemanager]$ vi jeusnm.propertie.. 2023. 12. 10. 이전 1 ··· 9 10 11 12 13 14 15 ··· 36 다음