Hey everyone,
I made a console system that I’m currently opening with the “Tab” key but I’d like to use the ² key just above. Is it possible to use this key in Unity ?
There is no informations about that key in the Scripting API: Keycode
Hey everyone,
I made a console system that I’m currently opening with the “Tab” key but I’d like to use the ² key just above. Is it possible to use this key in Unity ?
There is no informations about that key in the Scripting API: Keycode
Seems like I found it, it is:
if( Input.GetKeyDown( KeyCode.Quote) ){
print(“² pressed”);
}
But I’m pretty sure it depends on your keyboard type.