User:Garth FairChang

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
(New page: I tested llGetRegionTimeDilation in OpenLifeGrid and on a standalone sim. I always get the result of 0.914285719394684 Script used: string sim; float delay = 12.0; integer count; defaul...)
 
 

Latest revision as of 10:51, 4 February 2009

I tested llGetRegionTimeDilation in OpenLifeGrid and on a standalone sim. I always get the result of 0.914285719394684

Script used:

string sim; float delay = 12.0; integer count;

default {

   state_entry()
   {
       sim = llGetRegionName();
       llSetTimerEvent(delay);
   }
   timer()
   {
       count += 1;
       if(count == 61) count = 0;
       string t_td = (string)llGetRegionTimeDilation();
       string t_fps = (string)llGetRegionFPS();
       string t_host = (string)llGetSimulatorHostname();
       llSetText(count + "\n" + sim + "\nTD: " + t_td + "\nFPS: " + t_fps + "\nHost: " + t_host, <1,1,1>,1.0);
   }

}

Personal tools
General
About This Wiki