全员准备的提示改为文本

This commit is contained in:
MrZ626
2021-04-27 21:08:19 +08:00
parent be769a3617
commit 637d3ee670
8 changed files with 16 additions and 27 deletions

View File

@@ -98,8 +98,7 @@ return{
started="Playing", started="Playing",
joinRoom="has joined the room.", joinRoom="has joined the room.",
leaveRoom="has left the room.", leaveRoom="has left the room.",
notReady="Waiting", ready="READY",
beReady="Ready",
champion="$1 won", champion="$1 won",
chatRemain="Online: ", chatRemain="Online: ",
chatStart="------Beginning of log------", chatStart="------Beginning of log------",

View File

@@ -99,8 +99,7 @@ return{
-- started="Playing", -- started="Playing",
joinRoom="a rejoint le salon.", joinRoom="a rejoint le salon.",
leaveRoom="a quitté le salon.", leaveRoom="a quitté le salon.",
notReady="Attente", -- ready="READY",
beReady="Prêt",
champion="$1 a gagné", champion="$1 a gagné",
chatRemain="En ligne : ", chatRemain="En ligne : ",
chatStart="--------Début des logs--------", chatStart="--------Début des logs--------",

View File

@@ -99,8 +99,7 @@ return{
-- started="Playing", -- started="Playing",
joinRoom="Entrou a sala.", joinRoom="Entrou a sala.",
leaveRoom="Saiu da sala.", leaveRoom="Saiu da sala.",
-- notReady="Waiting", -- ready="READY",
-- beReady="Ready",
-- champion="$1 won", -- champion="$1 won",
chatRemain="Online: ", chatRemain="Online: ",
chatStart="------Começo do log------", chatStart="------Começo do log------",

View File

@@ -99,8 +99,7 @@ return{
-- started="Playing", -- started="Playing",
joinRoom="entró a la sala.", joinRoom="entró a la sala.",
leaveRoom="salió de la sala.", leaveRoom="salió de la sala.",
notReady="En espera", -- ready="READY",
beReady="Listo",
champion="$1 ganó!", champion="$1 ganó!",
chatRemain="Usuarios en línea: ", chatRemain="Usuarios en línea: ",
chatStart="------Comienzo del historial------", chatStart="------Comienzo del historial------",

View File

@@ -44,8 +44,7 @@ return{
createRoomTooFast="手痒要开这么多房间?", createRoomTooFast="手痒要开这么多房间?",
createRoomSuccessed="创好了", createRoomSuccessed="创好了",
started="开了", started="开了",
notReady="没有准备好", ready="预备!",
beReady="准备好了",
champion="神仙是 $1", champion="神仙是 $1",
stat={ stat={

View File

@@ -98,8 +98,7 @@ return{
started="游戏中", started="游戏中",
joinRoom="进入房间", joinRoom="进入房间",
leaveRoom="离开房间", leaveRoom="离开房间",
notReady="等待中", ready="准备!",
beReady="准备",
champion="$1 获胜", champion="$1 获胜",
chatRemain="人数:", chatRemain="人数:",
chatStart="------消息的开头------", chatStart="------消息的开头------",

View File

@@ -427,10 +427,6 @@ end
local function drawStartCounter(P) local function drawStartCounter(P)
gc_setColor(1,1,1) gc_setColor(1,1,1)
if P.frameRun<180 then if P.frameRun<180 then
if P.frameRun==0 then
setFont(70)
mStr(P.ready and text.beReady or text.notReady,305,220)
else
local count=179-P.frameRun local count=179-P.frameRun
gc_push("transform") gc_push("transform")
gc_translate(305,220) gc_translate(305,220)
@@ -439,7 +435,6 @@ local function drawStartCounter(P)
mStr(int(count/60+1),0,0) mStr(int(count/60+1),0,0)
gc_pop() gc_pop()
end end
end
end end
local draw={} local draw={}

View File

@@ -265,9 +265,9 @@ function scene.draw()
--All-ready mark --All-ready mark
if NET.allReady then if NET.allReady then
gc.setColor(0,1,.2,.8) gc.setColor(.1,1,0,.9)
gc.setLineWidth(10) setFont(60)
gc.rectangle("line",610,25,60,60) mStr(text.ready,640,10)
end end
--Profile --Profile