Hello, I am having problems with detecting my keyboard keys within unity, I use Ubuntu 20.04 and the editor version is: 2019.4.4f1. The thing is that the Axis Jump was not detecting that I have it configured by default with the space bar, but when updating the version I stop taking the action, when I am checking and change the axis to “O” and press the space bar take, and when using the following script in the console when I press the space bar the letter “O” is also reflected:
foreach(KeyCode vKey in
System.Enum.GetValues(typeof(KeyCode))){
if(Input.GetKey(vKey)){
Debug.Log(vKey);
} }