Difference between revisions of "LlResetTime"

From Second Life Wiki
Jump to navigation Jump to search
m (lsl code tagging)
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]]
|examples=<pre>
|examples=
<lsl>
default {
default {
     state_entry()
     state_entry()
Line 23: Line 24:
     }
     }
}
}
</pre>
</lsl>
|helpers
|helpers
|also_functions={{LSL DefineRow||[[llGetTime]]|}}
|also_functions={{LSL DefineRow||[[llGetTime]]|}}

Revision as of 13:38, 30 March 2008

Summary

Function: llResetTime( );

Resets the script-time timer to zero.

Caveats

All Issues ~ Search JIRA for related Bugs

Examples

<lsl> 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." );
   }

}

</lsl>

See Also

Functions

•  llGetTime
•  llGetAndResetTime

Deep Notes

Search JIRA for related Issues

Signature

function void llResetTime();