Keyboard
The Keyboard is one of the most common input devices on desktop platforms. You can access the keyboard state by using the Input class:
Usage
In your C# script you can read keyboard inputs:
public override void OnUpdate()
{
if (Input.GetKey(KeyboardKeys.E))
{
Debug.Log("E key is pressed.");
}
}