get key press unity code example
Example 1: unity key detection
if (Input.GetKeyDown(KeyCode.Space))
{
print("space key was pressed");
}
Example 2: unity when key pressed
void Update()
{
if (Input.GetKeyDown("space"))
{
print("space key was pressed");
}
}
Example 3: press key run code unity c#
if(Input.GetKey(KeyCode.space))
{
print("Space key was pressed")
}
Example 4: 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;
}
}
}
Example 5: unity key pressed
using UnityEngine;
public class Egsample_script : MonoBehaviour
{
[SerializeField] KeyCode your_key;
//select a key under inspektor
void Update()
{
if (Input.GetKey(your_key))
{
print("your selekted key was pressed");
}
}
}