[PYTHON] pygame - 기초 event
본문 바로가기
PYTHON/pygame

[PYTHON] pygame - 기초 event

by 공돌이삼촌 2020. 6. 23.
반응형

1. 마우스 event

 

마우스 버튼을 눌렀을 때의 event를 알아보자

 

각 event의 좌표가 출력되도록 만들었다.

if event.type == pygame.MOUSEBUTTONDOWN and event.button == LEFT:    # 왼쪽 버튼이 눌렸을 때
    print ("left mouse down ", event.pos)
elif event.type == pygame.MOUSEBUTTONUP and event.button == LEFT:    # 왼쪽 버튼이 떨어졌을 때
    print ("left mouse up ", event.pos)
elif event.type == pygame.MOUSEMOTION:    # 마우스 이동시
    print ("mouse move ", event.pos)

이때 마우스 버튼에 대한 값이 default로 정해져 있다.

# 마우스 버튼 값
LEFT = 1  # 왼쪽 마우스
RIGHT = 3  # 오른쪽 마우스

 

반응형

'PYTHON > pygame' 카테고리의 다른 글

[PYTHON] pygame - 기초 init, event, flip  (0) 2020.06.23

댓글