zhobo63 / imgui-ts

JavaScript bindings for Dear ImGui using Emscripten and TypeScript, modularized with webpack
MIT License
32 stars 6 forks source link

Keypad enter doesn't work because impl has wrong keycode in key_code_to_index #11

Open wadim-al opened 1 month ago

wadim-al commented 1 month ago

ImGui.IsKeyPressed(ImGui.Key.KeyPadEnter) doesn't work because numpad enter code should be 13, not 176 at imgui_impl.ts

const key_code_to_index: Record<string, number> = {
...
    "NumpadEnter": 176,
};

according to https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/keyCode#numpad_keys