聊天室不会按一次esc就退出

This commit is contained in:
MrZ626
2020-12-07 21:28:12 +08:00
parent 88a5e50256
commit 96987add7b
5 changed files with 11 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ local remain--People in chat room
local scroll--Bottom message no.
local newMessage=false--If there is a new message
local heartBeatTimer
local escapeTimer=0
local function focusAtTextbox()
coroutine.yield()
@@ -66,7 +67,12 @@ function scene.keyDown(k)
elseif k=="return"then
sendMessage()
elseif k=="escape"then
SCN.back()
if Timer()-escapeTimer<.6 then
SCN.back()
else
escapeTimer=Timer()
LOG.print(text.chatQuit,COLOR.orange)
end
else
WIDGET.keyPressed(k)
end