getkeycode unity 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: 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;
        }
    }
}

Tags:

Misc Example