Love2D 11.3 port

This commit is contained in:
WesleyCSJ
2020-08-11 22:31:35 -03:00
parent b130b88080
commit 487ac002f5
9 changed files with 25 additions and 25 deletions
+2 -2
View File
@@ -32,9 +32,9 @@ end
function love.draw()
if paused then
love.graphics.setColor(90, 90, 90, 255)
love.graphics.setColor(0.35, 0.35, 0.35, 1)
love.graphics.draw(pauseCanvas, 0, 0)
love.graphics.setColor(255, 255, 255, 255)
love.graphics.setColor(1, 1, 1, 1)
love.graphics.setFont(assets.fnt_hud)
love.graphics.printf("Paused - P to Resume", love.graphics.getWidth() * 0.5 - 125, love.graphics.getHeight() * 0.4, 250, "center")
else