예제 #1
0
파일: TestButton.cs 프로젝트: Yurukan/Unity
 public void OnKeyBeginHold(KeyEventData eventData)
 {
     Debug.Log("Key begin hold.");
     Debug.Log(eventData.ToString());
 }
예제 #2
0
파일: TestButton.cs 프로젝트: Yurukan/Unity
 public void OnKeyDown(KeyEventData eventData)
 {
     Debug.Log("Key down.");
     Debug.Log(eventData.ToString());
 }
예제 #3
0
파일: TestButton.cs 프로젝트: Yurukan/Unity
 public void OnKeyUp(KeyEventData eventData)
 {
     Debug.Log("Key up.");
     Debug.Log(eventData.ToString());
 }
예제 #4
0
파일: TestButton.cs 프로젝트: Yurukan/Unity
 public void OnKeyEndHold(KeyEventData eventData)
 {
     Debug.Log("Key end hold.");
     Debug.Log(eventData.ToString());
 }