Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
minetest.register_on_keydown(player,key)
if key == "esc" then
minetest.chat_send_player(player:get_player_name(),"You pressed ESC!");
end
end
or
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
local ctrl = player:get_player_controls()
if ctrl.esc then
minetest.chat_send_player(player:get_player_name(),"You pressed ESC!");
end