Description
This video shows old (Qt behavior) and new behavior.
This probably relates to an old post I made here. And now I finally remember the issue.
It was for things like these.
Or well, you just have to detect QWERTY or QWERTZ and swap Y and Z out.
game:GetService("UserInputService").InputBegan:Connect(function(inputObject) print(inputObject.KeyCode) end)
Basically, if I click Z
it will trigger KeyCode.Y
. The same goes for ContextActionService
. This is could be a mistake.
Look at JavaScript. https://www.toptal.com/developers/keycode
It does also say that it detects the same KeyCode, yes. But you’re able to see which event.key
SpecialKeyPressed
probably can be compared to event.key
.
While you don’t on UserInputService or ContextActionService…
But there’s some more additional info.
If I swap to an QWERTZ Keyboard Layout, like German. If I click Z it will tell me that I clicked KeyY
and z
. And if I click Y it will tell me I clicked KeyZ
and y
.
There’s also some other issues with… UserInputService
but…
print(game:GetService("UserInputService"):GetStringForKeyCode(Enum.KeyCode.Y))
This would return Z
for me. And if you’re on a US Layout, then it returns Y
.
But this function won’t update if you change your keyboard layout while Roblox Studio is open, so it’s also gonna give you different information. (A different bug)
Re-production Steps
If you’re on Windows, you can add multiple Keyboard Layouts to the thing at the bottom right next to the thing that shows the current time! Somewhere in the settings.
Make sure you add a QWERTZ layout, like German.
- Locate the Explorer Search Text Box or any Developer Framework TextInput Component
- Type in something
- Do
CTRL + [DEFINE_1]
whereDEFINE_1
is the letter afterT
on your keyboard. QWERTZ. So here I’d pressZ
. If you’re on QWERTY, you have to pressY
. Because yourY
now does “strings” asZ
. - Observe
Expected Result
When I do CTRL + Z on QWERTZ, I expect it to do UNDO and handle my keypress as CTRL + Z.
That what I see on my keyboard, is what I get.
Other applications do this right. e.g. Google Chrome, Qt. etc.
Actual Result
When I click CTRL + Z on QWERTZ. It will intercept it as CTRL + Y and call it the day.
That what I see on my keyboard is not what I get…