Beispiel #1
0
 public void OnKeyBeginHold(KeyEventData eventData)
 {
     Debug.Log("Key begin hold.");
     Debug.Log(eventData.ToString());
 }
Beispiel #2
0
 public void OnKeyDown(KeyEventData eventData)
 {
     Debug.Log("Key down.");
     Debug.Log(eventData.ToString());
 }
Beispiel #3
0
 public void OnKeyUp(KeyEventData eventData)
 {
     Debug.Log("Key up.");
     Debug.Log(eventData.ToString());
 }
Beispiel #4
0
 public void OnKeyEndHold(KeyEventData eventData)
 {
     Debug.Log("Key end hold.");
     Debug.Log(eventData.ToString());
 }