Answers for "unity if get key down and up"

C#
1

press key run code unity c#

if(Input.GetKey(KeyCode.space))
	{
  		print("Space key was pressed")
	}
Posted by: Guest on May-26-2020
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