Posts 유니티 에디터 - 키보드 이벤트 메모
Post
Cancel

유니티 에디터 - 키보드 이벤트 메모

Note


1
2
3
4
5
6
7
8
9
10
11
// 현재 누른 키 확인
bool spacePressed = Event.current.keyCode == KeyCode.Space;

// 다른 이벤트(마우스 이벤트 등)와 동시에 입력한 보조 키 확인
bool controlPressed = Event.current.modifiers == EventModifiers.Control;

// LCtrl + 마우스 좌클릭
bool ctrlAndLeftClick = 
    Event.current.modifiers == EventModifiers.Control &&
    Event.current.type == EventType.MouseDown && 
    Event.current.button == 0;
This post is licensed under CC BY 4.0 by the author.