Returns the current frames per second.

== Function ==
=== Synopsis ===
<source lang="lua">
fps = love.timer.getFPS( )
</source>
=== Arguments ===
None.
=== Returns ===
{{param|number|fps|The current FPS.}}
== Examples ==
Display text at the top left of the screen showing the current FPS.
<source lang="lua">
function love.draw()
   love.graphics.print("Current FPS: "..tostring(love.timer.getFPS( )), 10, 10)
end 
</source>
== See Also ==
* [[parent::love.timer]]
[[Category:Functions]]
{{#set:Description=Returns the current frames per second.}}
{{#set:Since=000}}
== Other Languages ==
{{i18n|love.timer.getFPS}}