WoW:API GetFramerate
Jump to navigation
Jump to search
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