2017-07-18 04:29:28 -04:00
|
|
|
--the pause menu
|
|
|
|
|
|
|
|
pause = false
|
|
|
|
|
2017-08-04 03:40:48 -04:00
|
|
|
function pause_game()
|
|
|
|
--love.graphics.rectangle( "line", 10, 1, 53,53 )
|
2017-07-18 04:29:28 -04:00
|
|
|
|
2017-08-04 03:34:38 -04:00
|
|
|
end
|
|
|
|
|
2017-08-04 04:18:05 -04:00
|
|
|
--Font:getHeight( )
|
|
|
|
|
2017-08-04 03:34:38 -04:00
|
|
|
function render_pause_menu()
|
2017-08-04 04:18:05 -04:00
|
|
|
|
|
|
|
--menu title
|
|
|
|
love.graphics.setColor(255,255,255,255)
|
2017-08-04 03:40:48 -04:00
|
|
|
love.graphics.setFont(hugefont)
|
2017-08-04 04:18:05 -04:00
|
|
|
love.graphics.print("GAME MENU", love.graphics.getWidth( )/2-(hugefont:getWidth("GAME MENU")/2),50)
|
|
|
|
|
|
|
|
|
|
|
|
--directories
|
|
|
|
|
|
|
|
|
|
|
|
--graphics
|
|
|
|
love.graphics.setColor(255,255,255,255)
|
|
|
|
love.graphics.rectangle( "fill", love.graphics.getWidth( )/2-(fontbig:getWidth("GRAPHICS")/2)-2, 250-9,fontbig:getWidth("GRAPHICS"), fontbig:getHeight("GRAPHICS") )
|
|
|
|
---
|
|
|
|
love.graphics.setColor(0,0,0,255)
|
|
|
|
love.graphics.setFont(fontbig)
|
|
|
|
love.graphics.print("GRAPHICS", love.graphics.getWidth( )/2-(fontbig:getWidth("GRAPHICS")/2),250)
|
|
|
|
|
|
|
|
--volume
|
|
|
|
love.graphics.setColor(255,255,255,255)
|
|
|
|
love.graphics.rectangle( "fill", love.graphics.getWidth( )/2-(fontbig:getWidth("VOLUME")/2)-2, 350-9,fontbig:getWidth("VOLUME"), fontbig:getHeight("VOLUME") )
|
|
|
|
---
|
|
|
|
love.graphics.setColor(0,0,0,255)
|
|
|
|
love.graphics.setFont(fontbig)
|
|
|
|
love.graphics.print("VOLUME", love.graphics.getWidth( )/2-(fontbig:getWidth("VOLUME")/2),350)
|
|
|
|
|
|
|
|
--world
|
|
|
|
love.graphics.setColor(255,255,255,255)
|
|
|
|
love.graphics.rectangle( "fill", love.graphics.getWidth( )/2-(fontbig:getWidth("WORLD")/2)-2, 450-9,fontbig:getWidth("WORLD"), fontbig:getHeight("WORLD") )
|
|
|
|
---
|
|
|
|
love.graphics.setColor(0,0,0,255)
|
|
|
|
love.graphics.setFont(fontbig)
|
|
|
|
love.graphics.print("WORLD", love.graphics.getWidth( )/2-(fontbig:getWidth("WORLD")/2),450)
|
|
|
|
|
|
|
|
--exit
|
|
|
|
love.graphics.setColor(255,255,255,255)
|
|
|
|
love.graphics.rectangle( "fill", love.graphics.getWidth( )/2-(fontbig:getWidth("EXIT")/2)-2, 550-9,fontbig:getWidth("EXIT"), fontbig:getHeight("EXIT") )
|
|
|
|
---
|
|
|
|
love.graphics.setColor(0,0,0,255)
|
|
|
|
love.graphics.setFont(fontbig)
|
|
|
|
love.graphics.print("EXIT", love.graphics.getWidth( )/2-(fontbig:getWidth("EXIT")/2),550)
|
|
|
|
|
|
|
|
|
|
|
|
--love.graphics.setColor(80,80,80,255)
|
2017-07-18 04:29:28 -04:00
|
|
|
end
|