Techmino
Techmino copied to clipboard
Pressing NumpadEnter on console or chat doesn't do anything
- Go to console
- Type a command
- Press the Enter key on the numpad
- Nothing happens
This also happens on chat
Try to press the numpadEnter at test scene (type test in the cosole) then take a screenshot?
Try to press the numpadEnter at test scene (type test in the cosole) then take a screenshot?
Recognizable

The keys on the numpad are counted as different, so you need to account for them.
Yes, exactly
Should be pretty easy to fix: /parts/scenes/app_console.lua:
function scene.keyDown(key)
if key=="return"then
...
end
function scene.keyDown(key)
if key=="return" or key=="kpenter" then
...
end
https://github.com/26F-Studio/Techmino/issues/745#issuecomment-1235978547