> ## Documentation Index
> Fetch the complete documentation index at: https://lua.starline.one/llms.txt
> Use this file to discover all available pages before exploring further.

# Input

> Read raw Win32 key state and resolve virtual-key names.

Raw Win32 key state. Not gated on the menu being open.

## IsKeyDown

```lua theme={"dark"}
if input.IsKeyDown(0x06) then ... end   -- mouse5
```

| Name | Type                           |
| ---- | ------------------------------ |
| VKey | Number, Win32 virtual-key code |

## GetKeyName

```lua theme={"dark"}
local name = input.GetKeyName(0x06)   -- "m5"
```
