调整房间内准备状态文本颜色

This commit is contained in:
MrZ626
2021-06-27 03:07:07 +08:00
parent 0f3c234ca0
commit ef14e8b38c

View File

@@ -288,13 +288,13 @@ function scene.draw()
--Ready & Set mark
setFont(50)
if NET.roomReadyState=='allReady'then
gc_setColor(0,1,.5,.9)
gc_setColor(1,.85,.6,.9)
mStr(text.ready,640,15)
elseif NET.roomReadyState=='connecting'then
gc_setColor(.1,1,.8,.9)
gc_setColor(.6,1,.9,.9)
mStr(text.connStream,640,15)
elseif NET.roomReadyState=='waitConn'then
gc_setColor(0,.8,1,.9)
gc_setColor(.6,.95,1,.9)
mStr(text.waitStream,640,15)
end