Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

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

Event.isKey

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