keycode values for greater than and less than

I’m trying to use the greater than > and less than < as inputs but keycode.greater and keycode.less don’t appear to do anything.

I also tried to following code to capture shift and period but that didn’t fire either.

if (Input.GetKeyDown(KeyCode.Period) && (Input.GetKeyDown(KeyCode.LeftShift) || Input.GetKeyDown(KeyCode.RightShift)))  SendCommand(COMMAND.DESCENDSTAIRS);

GetKeyDOWN checks for a key that went from up to down that frame. GetKey checks for “being held down.” So, removing the DOWN from the shift checks should take care of it.

Plus, to test, Debug.Log some of the values, to see what isn’t firing when you thought it should.