llGetRegionTimeDilation

From Second Life Wiki
Revision as of 15:32, 17 May 2007 by Awsoonn Rawley (talk | contribs) (EX)
Jump to navigation Jump to search

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.
default
{
    state_entry()
    {
        llSetTimerEvent(3.0);
    }
    
    timer()
    {
        string msg;
        
        msg = "   REGION NAME : " + llGetRegionName() + "\n"
            + "TIME DIALATION : " + (string)llGetRegionTimeDilation();
        
        llSetText(msg, <0,1,0>, 1.0);
    }
}

See Also

Functions

•  llGetRegionFPS
•  llGetTime
•  llGetAndResetTime

Deep Notes

Search JIRA for related Issues

Signature

function float llGetRegionTimeDilation();