Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Event.isKey

public var isKey: bool;

Description

Is this event a keyboard event? (Read Only)

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