unity key held down code example
Example 1: unity key detection
void Update()
{
if (Input.GetKeyDown("space"))
{
print("space key was pressed");
}
}
Example 2: how to see if they are aholding down a key unity
input.GetKey("Key")