Answers for "Debug.Log(Input.GetKey)"

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

Browse Popular Code Answers by Language