WoW:API GetFramerate: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 36: Line 36:


----
----
{{Template:WoW API}}
{{WoW API}}
[[Category:API Functions|GetFramerate]]
[[Category:API Core Functions|GetFramerate]]

Revision as of 05:00, 4 January 2006

GetFramerate - Documentation by Anti-Gremlin-

Retrieve the current Framerate (FPS)

framerate = GetFramerate();


Arguments
none

Returns
freamrate
The current frames per second.

Example
 -- Get the FrameRate from the Client
local framerate = GetFramerate();
if(framerate >= 30) then
message( "Great FPS!" );
elseif( framerate < 30 and framerate > 10 ) then
message( "Average FPS..." );
elseif( framerate <= 10 ) then
message( "Bad FPS!!!!" );
end
Result

Message box appears with what kind of FPS you have.


Description
Retrieve the current framerate of your system

Template:WoW API