Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

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

Event.isKey

Switch to Manual
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!");
		}
	}