So I just upgraded to B22. It now seems that the editor eats any combination of keys with ALT down. The following will never print ALT. Rather than hand/eye icon at the top left of the editor (pan/translate/rotate/scale toolbar) switches. Is anyone else experiencing this?
void Update()
{
//for keyboard, arrow keys plus ALT.
if (Input.GetKeyUp(KeyCode.LeftArrow) || Input.GetKeyUp(KeyCode.RightArrow))
{
Debug.Log("Arrow");
if (Input.GetKey(KeyCode.LeftAlt) || Input.GetKey(KeyCode.RightAlt))
{
//Does not work. Alt in combination with anything never happens.
Debug.Log("Alt");
}
}
}