Answers for "unity pressed key"

C#
4

unity when key pressed

void Update()
    {
        if (Input.GetKeyDown("space"))
        {
            print("space key was pressed");
        }
    }
Posted by: Guest on February-14-2021
0

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;
        }
    }
}
Posted by: Guest on August-04-2020

C# Answers by Framework

Browse Popular Code Answers by Language