Skip to content

Key Codes Reference

ImGui Key Codes

Used with isKeyDown, isKeyPressed, and isKeyReleased.

You can iterate the ImGuiKey global table to get the full key code mapping:

lua
for keyName, keyCode in pairs(ImGuiKey) do
    print(keyName .. " = " .. keyCode)
end

Virtual Key Codes

Used with getKeyState.

KeyCode (Hex)KeyCode (Hex)
Left Mouse0x01Right Mouse0x02
Middle Mouse0x04Backspace0x08
Tab0x09Enter0x0D
Shift0x10Ctrl0x11
Alt0x12Escape0x1B
Space0x20Page Up0x21
Page Down0x22End0x23
Home0x24Arrow Keys0x25-0x28

Released under the ISC License.