Difference between revisions of "LlGetRegionFPS"

From Second Life Wiki
Jump to navigation Jump to search
m
(EX)
Line 12: Line 12:
|spec
|spec
|caveats=
|caveats=
*Region FPS is capped at 45.0 frames per second, so this function never returns greater than 45.0
*Region FPS is currently capped at 45.0 frames per second, so this function never returns greater than 45.0
|examples
|examples=<pre>
// The beginnings of a region-info script.
default
{
    state_entry()
    {
        llSetTimerEvent(3.0);
    }
   
    timer()
    {
        string msg;
       
        msg = "  REGION NAME : " + llGetRegionName() + "\n"
            + "TIME DIALATION : " + (string)llGetRegionTimeDilation() + "\n"
            + "    REGION FPS : " + (string)llGetRegionFPS() + "\n";
       
        llSetText(msg, <0,1,0>, 1.0);
    }
}
</pre>
|helpers
|helpers
|also_header
|also_header

Revision as of 15:35, 17 May 2007

Summary

Function: float llGetRegionFPS( );

Returns a float that is the mean region frames per second.

Caveats

  • Region FPS is currently capped at 45.0 frames per second, so this function never returns greater than 45.0
All Issues ~ Search JIRA for related Bugs

Examples

// The beginnings of a region-info script.
default
{
    state_entry()
    {
        llSetTimerEvent(3.0);
    }
    
    timer()
    {
        string msg;
        
        msg = "   REGION NAME : " + llGetRegionName() + "\n"
            + "TIME DIALATION : " + (string)llGetRegionTimeDilation() + "\n"
            + "    REGION FPS : " + (string)llGetRegionFPS() + "\n";
        
        llSetText(msg, <0,1,0>, 1.0);
    }
}

See Also

Functions

•  llGetSimulatorHostname Gets the hostname of the server
•  llGetRegionTimeDilation Gets the region time dilation

Deep Notes

Search JIRA for related Issues

Signature

function float llGetRegionFPS();