You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: imgui-binding/src/main/java/imgui/flag/ImGuiNavInput.java
+26Lines changed: 26 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -69,4 +69,30 @@ private ImGuiNavInput() {
69
69
* e.g. R1 or R2 (PS4), RB or RT (Xbox), R or ZL (Switch)
70
70
*/
71
71
publicstaticfinalintTweakFast = 15;
72
+
73
+
// [Internal] Don't use directly! This is used internally to differentiate keyboard from gamepad inputs for behaviors that require to differentiate them.
74
+
// Keyboard behavior that have no corresponding gamepad mapping (e.g. CTRL+TAB) will be directly reading from io.KeysDown[] instead of io.NavInputs[].
0 commit comments