detect keypress unity code example
Example 1: unity key detection
if (Input.GetKeyDown(KeyCode.Space))
{
print("space key was pressed");
}
Example 2: unity key detection
void Update()
{
if (Input.GetKeyDown("space"))
{
print("space key was pressed");
}
}
Example 3: unity getkey keycode
Input.GetKey(KeyCode.Space))
Example 4: how to get a key input
if (Input.GetKey("//yourkey"))