WoW:API GetFramerate: Difference between revisions
Jump to navigation
Jump to search
GetFramerate - Documentation by Anti-Gremlin-
mNo edit summary |
No edit summary |
||
Line 36: | Line 36: | ||
---- | ---- | ||
{{ | {{WoW API}} | ||
Revision as of 05:00, 4 January 2006
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