EnumsKeyStateOn this pageKeyStateThe KeyState enum represents the various states of a key in the game.Definitionenum KeyState { Up = 'up', Down = 'down', JustUp = 'just_up', JustDown = 'just_down',}Enum ValuesUp: The key is up.Down: The key is down.JustUp: The key was just released.JustDown: The key was just pressed.