Replies: 3 comments 2 replies
-
On what platform? For me, using |
Beta Was this translation helpful? Give feedback.
-
windows, using egui_template app. I have this code at top of my update
I get
when I press 2 and then shift + 2 The first three come from the 2 key being down, the @ comes when I do shift then 2 However your demo app shows the correct thing for me! code is here https://github.com/pm100/hackem Just cargo run it and type (ignore ui and menus etc) |
Beta Was this translation helpful? Give feedback.
-
OK using egui / eframe master . Now all keys come as keys_down. Great! |
Beta Was this translation helpful? Give feedback.
-
Lower case 'a' is reported in input.keys_down
shift + 'a' is reported in input.keys_down + modifier = shift
Number '2' is reported in keys_down '2'
Number 2 + shift is reported as a Text event = "@"
Most (not all) of the non alpha keys when shifted are reported as a Text event
This is
Beta Was this translation helpful? Give feedback.
All reactions