how do you get key press unity code example
Example: 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");
}
}
}