Equivalent of IsKeyDown() for NavInputs[]
| 2840 | |
| 2841 | // Equivalent of IsKeyDown() for NavInputs[] |
| 2842 | static bool IsNavInputDown(ImGuiNavInput n) |
| 2843 | { |
| 2844 | return GImGui->IO.NavInputs[n] > 0.0f; |
| 2845 | } |
| 2846 | |
| 2847 | // Equivalent of IsKeyPressed() for NavInputs[] |
| 2848 | static bool IsNavInputPressed(ImGuiNavInput n, ImGuiInputReadMode mode) |
no outgoing calls
no test coverage detected