I have an input box and I want users to be able to enter different keyboard commands. How do I show them what they are entering?
For example:
"CTRL+2"
"SHIFT+L"
"R"
"ALT+2"
"CTRL+3
"Spacebar"
"Home"
"Page up"
etc.
Thanks!
Develop games in your browser. Powerful, performant & highly capable.
You can get the last key down using the keyboard object.
On Any key Pressed -> Log Keyboard.TypedKey
Thank you! I was getting ready to use keycodes, which would have meant importing a file with all the codes and the corresponding text strings.
Your suggestion will make everything MUCH easier!