tas模式下玩家会以回放模式绘制

This commit is contained in:
MrZ626
2021-08-17 02:37:35 +08:00
parent 186f18f4d2
commit d382bad8e1

View File

@@ -328,7 +328,7 @@ local function drawAtkPointer(x,y)
gc.circle('line',x,y,30*(1+a),6) gc.circle('line',x,y,30*(1+a),6)
end end
function scene.draw() function scene.draw()
if GAME.tasUsed then if tasMode then
gc.push('transform') gc.push('transform')
gc.scale(4) gc.scale(4)
setFont(100) setFont(100)
@@ -337,7 +337,7 @@ function scene.draw()
gc.pop() gc.pop()
end end
local repMode=GAME.replaying local repMode=GAME.replaying or tasMode
--Players --Players
for p=1,#PLAYERS do for p=1,#PLAYERS do