Difference between revisions of "LlGetRegionFPS"

From Second Life Wiki
Jump to navigation Jump to search
 
m (<lsl> tag to <source>)
 
(16 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{LSLFunctionAll|func_id=228|func_sleep=0.0|func_energy=10.0|func=llGetRegionFPS|return_type=float|func_footnote=returns the mean region frames per second|return_text|spec|caveats|examples|helpers|related|also|notes}}[[Category:LSL_Functions]][[Category:LSL_Stub]]
{{LSL_Function
|func=llGetRegionFPS
|func_id=228
|func_sleep=0.0
|func_energy=10.0
|sort=GetRegionFPS
|func_desc
|func_footnote
|return_type=float
|return_text=that is the mean region frames per second.
|constants
|spec
|caveats=
*Region FPS is currently capped at 45.0 frames per second, so this function never returns greater than 45.0
|examples=<source lang="lsl2">
// The beginnings of a region-info script.
string region;
string sim;
 
default
{
    state_entry()
    {
        llSetTimerEvent(1.0);
    }
 
    timer()
    {
        string here = llGetRegionName();
        if(region != here)
        {
            sim = llGetSimulatorHostname();
            region = here;
        }
        llSetText(
                "  REGION NAME : " + region +
              "\n  SIM HOSTNAME : " + sim +
              "\nTIME DIALATION : " + (string)llGetRegionTimeDilation() +
              "\n    REGION FPS : " + (string)llGetRegionFPS(),
            <0,1,0>, 1.0);
    }
}
</source>
|helpers
|also_header
|also_functions=
{{LSL DefineRow||[[llGetSimulatorHostname]]|Gets the hostname of the server}}
{{LSL DefineRow||[[llGetRegionTimeDilation]]|Gets the region time dilation}}
|also_tests
|also_events
|also_articles
|also_footer
|notes
|mode
|location
|cat1=Region
|cat2
|cat3
|cat4
}}

Latest revision as of 02:46, 22 January 2015

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.
string region;
string sim;

default
{
    state_entry()
    {
        llSetTimerEvent(1.0);
    }

    timer()
    {
        string here = llGetRegionName();
        if(region != here)
        {
            sim = llGetSimulatorHostname();
            region = here;
        }
        llSetText(
                "   REGION NAME : " + region + 
              "\n  SIM HOSTNAME : " + sim + 
              "\nTIME DIALATION : " + (string)llGetRegionTimeDilation() +
              "\n    REGION FPS : " + (string)llGetRegionFPS(),
            <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();