unity if get key down and up code example
Example 1: press key run code unity c#
if(Input.GetKey(KeyCode.space))
{
print("Space key was pressed")
}
Example 2: Debug.Log(Input.GetKey)
void Update()
{
//get the input
var input = Input.inputString;
//ignore null input to avoid unnecessary computation
if (!string.IsNullOrEmpty(input))
{
switch(input)
{
case 'a': break;
case 'b': break;
}
}
}