Returns the current frames per second.
fps = love.timer.getFPS( )
None.
number fps
Display text at the top left of the screen showing the current FPS.
function love.draw() love.graphics.print("Current FPS: "..tostring(love.timer.getFPS( )), 10, 10) end