Difference between revisions of "LlResetTime"

From Second Life Wiki
Jump to navigation Jump to search
(copied from llGetAndResetTime)
m (<lsl> tag to <source>)
 
(5 intermediate revisions by 4 users not shown)
Line 10: Line 10:
**Simulator reset (admin or crash)
**Simulator reset (admin or crash)
**Call to either [[llResetTime]] or [[llGetAndResetTime]]
**Call to either [[llResetTime]] or [[llGetAndResetTime]]
*Script time doesn't measure real world time, it is affected by time dilation.  
*Script time measures real world time, it is unaffected by time dilation.  
|examples=
|examples=
<lsl>
<source lang="lsl2">
default {
default {
     state_entry()
     state_entry()
Line 25: Line 25:
     }
     }
}
}
</lsl>
</source>
|helpers
|helpers
|also_functions={{LSL DefineRow||[[llGetTime]]|}}
|also_functions={{LSL DefineRow||[[llGetTime]]|}}

Latest revision as of 14:30, 22 January 2015

Summary

Function: llResetTime( );
0.0 Forced Delay
10.0 Energy

Resets the script-time timer to zero.

Caveats

Examples

default {
    state_entry()
    {
        llResetTime();
    }
    touch_start(integer num_touch)
    {
        float time = llGetTime(); //Instead getting, and then resetting the time, we could use llGetAndReset() to accomplish the same thing.
        llResetTime();
        llSay(0,(string)time + " seconds have elapsed since the last touch." );
    }
}

See Also

Functions

•  llGetTime
•  llGetAndResetTime

Deep Notes

Signature

function void llResetTime();