WoW:API GetFramerate

From AddOn Studio
Revision as of 05:48, 27 June 2005 by WoWWiki>Anti-Gremlin
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
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