Moved the LCA draw call to after the piece draw call
parent
625d4f80af
commit
a5fed31f4e
|
@ -920,13 +920,13 @@ function GameMode:draw(paused)
|
||||||
self:drawFrame()
|
self:drawFrame()
|
||||||
self:drawGrid()
|
self:drawGrid()
|
||||||
self:drawPiece()
|
self:drawPiece()
|
||||||
|
if self:canDrawLCA() then
|
||||||
|
self:drawLineClearAnimation()
|
||||||
|
end
|
||||||
self:drawNextQueue(self.ruleset)
|
self:drawNextQueue(self.ruleset)
|
||||||
self:drawScoringInfo()
|
self:drawScoringInfo()
|
||||||
self:drawReadyGo()
|
self:drawReadyGo()
|
||||||
self:drawCustom()
|
self:drawCustom()
|
||||||
if self:canDrawLCA() then
|
|
||||||
self:drawLineClearAnimation()
|
|
||||||
end
|
|
||||||
|
|
||||||
love.graphics.setColor(1, 1, 1, 1)
|
love.graphics.setColor(1, 1, 1, 1)
|
||||||
love.graphics.setFont(font_3x5_2)
|
love.graphics.setFont(font_3x5_2)
|
||||||
|
|
Loading…
Reference in New Issue