Difference between revisions of "LlResetTime"

From Second Life Wiki
Jump to navigation Jump to search
(Redirecting to LSL llResetTime)
m (<lsl> tag to <source>)
 
(11 intermediate revisions by 7 users not shown)
Line 1: Line 1:
#REDIRECT [[LSL llResetTime]]
{{LSL_Function
|func_id=83|func_sleep=0.0|func_energy=10.0
|func=llResetTime
|func_desc=Resets the script-time timer to zero.
|return_text
|spec
|caveats=
*Script time resets when...
**Script reset (user or [[llResetScript]] or [[llResetOtherScript]])
**Simulator reset (admin or crash)
**Call to either [[llResetTime]] or [[llGetAndResetTime]]
*Script time measures real world time, it is unaffected by time dilation.
|examples=
<source lang="lsl2">
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." );
    }
}
</source>
|helpers
|also_functions={{LSL DefineRow||[[llGetTime]]|}}
{{LSL DefineRow||[[llGetAndResetTime]]|}}
|also
|notes
|cat1=Time
|cat2=Script
|cat3
|cat4
}}

Latest revision as of 14:30, 22 January 2015

Summary

Function: llResetTime( );

Resets the script-time timer to zero.

Caveats

All Issues ~ Search JIRA for related Bugs

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

Search JIRA for related Issues

Signature

function void llResetTime();