Event.type
var type: EventType;
Description

The type of event.

	// Prints the current event detected.
	function OnGUI () {
		Debug.Log("Current event detected: " + Event.current.type);
	}