input unity keycode code example

Example 1: unity key detection

if (Input.GetKeyDown(KeyCode.Space))
        {
            print("space key was pressed");
        }

Example 2: unity keycode

if (Input.GetKeyDown(KeyCode.A))
        {
            Debug.Log("The A key was pressed.");
        }

Example 3: unity getkey keycode

Input.GetKey(KeyCode.Space))

Example 4: 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");
        }
    }
}