I've been trying to get the Enter key working:
void Update () {
if (Input.GetKeyDown("enter"))
{
print ("enter pressed");
}
}
I also tried `Input.GetKeyDown(Keycode.Return)`
I read the manual and other posts, and I can get the keys working, but for the life of me I can't get Enter working.
↧