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);