Unity key down code example
Example 1: unity key detection
if (Input.GetKeyDown(KeyCode.Space))
{
print("space key was pressed");
}
Example 2: unity get key down
if(Input.GetKeyDown(KeyCode.Space))
{
}
Example 3: get key unity
if(Input.GetKey(KeyCode.Space))
{
}
Example 4: unity key detection
void Update()
{
if (Input.GetKeyDown("space"))
{
print("space key was pressed");
}
}
Example 5: How to hold key down unity
Input.GetKey("Key")
if (Input.GetKey("Key"))
{
}
if (Input.GetKey("left shift"))
{
RunBool = true;
WalkBool = false;
}
Example 6: unity getkey keycode
Input.GetKey(KeyCode.Space))