Event.isKey Manual     Reference     Scripting  
Scripting > Runtime Classes > Event
Event.isKey

var isKey : boolean

Description

Is this event a keyboard event? (Read Only)

JavaScript
// Detects any keyboard event
function OnGUI() {
var e : Event = Event.current;
if (e.isKey){
Debug.Log("Detected a keyboard event!");
}
}

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void OnGUI() {
Event e = Event.current;
if (e.isKey)
Debug.Log("Detected a keyboard event!");

}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def OnGUI():
e as Event = Event.current
if e.isKey:
Debug.Log('Detected a keyboard event!')