Note that Dear ImGui doesn't know the meaning/semantic of ImGuiKey from 0..511: they are legacy native keycodes. Consider transitioning from 'IsKeyDown(MY_ENGINE_KEY_A)' (<1.87) to IsKeyDown(ImGuiKey_A) (>= 1.87)
| 9604 | // Note that Dear ImGui doesn't know the meaning/semantic of ImGuiKey from 0..511: they are legacy native keycodes. |
| 9605 | // Consider transitioning from 'IsKeyDown(MY_ENGINE_KEY_A)' (<1.87) to IsKeyDown(ImGuiKey_A) (>= 1.87) |
| 9606 | bool ImGui::IsKeyDown(ImGuiKey key) |
| 9607 | { |
| 9608 | return IsKeyDown(key, ImGuiKeyOwner_Any); |
| 9609 | } |
| 9610 | |
| 9611 | bool ImGui::IsKeyDown(ImGuiKey key, ImGuiID owner_id) |
| 9612 | { |
nothing calls this directly
no test coverage detected