Difference between revisions of "LlGetRegionTimeDilation"

From Second Life Wiki
Jump to navigation Jump to search
m (spelling error in the sample code)
m
Line 33: Line 33:
               "\n TIME DILATION : " + (string)llGetRegionTimeDilation() +
               "\n TIME DILATION : " + (string)llGetRegionTimeDilation() +
               "\n    REGION FPS : " + (string)llGetRegionFPS(),
               "\n    REGION FPS : " + (string)llGetRegionFPS(),
             <0,1,0>, 1.0};
             <0,1,0>, 1.0);
     }
     }
}
}

Revision as of 17:49, 22 September 2007

Summary

Function: float llGetRegionTimeDilation( );

Returns a float that is the current time dilation, between 0.0 and 1.0

Time dilation effects llGetTime and llGetAndResetTime

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 + 
              "\n TIME DILATION : " + (string)llGetRegionTimeDilation() +
              "\n    REGION FPS : " + (string)llGetRegionFPS(),
            <0,1,0>, 1.0);
    }
}

See Also

Functions

•  llGetRegionFPS
•  llGetTime
•  llGetAndResetTime

Deep Notes

Search JIRA for related Issues

Signature

function float llGetRegionTimeDilation();