Stopwatch(float precision time)

From Second Life Wiki
Revision as of 12:53, 12 April 2009 by Strife Onizuka (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Emblem-important-yellow.png LSL Feature Request
The described event does not exist. This article is a feature request.

Description

Event: stopwatch( float milli_seconds ){ ; }

stopwatch(float precision_time) Should work like timer() and react to llSetTimerEvent(float time), but with higer precision.

• float milli_seconds undefined

Specification

current timer event does not work on milliseconds base, this new event state would. In the current timer event there is no high speed precision possible.

Caveats

This new event would probably have to be executed client-side to work. Please comment! Maybe necessary to also implement llSetStopwatch(float milli_seconds) to trigger this event, and llSetStopwatch(0) to stop the event.

All Issues ~ Search JIRA for related Bugs

Examples

<lsl>float milliseconds; default {

   stopwatch(float precision_timer)
   {
       for (milliseconds=0; milliseconds < 10; milliseconds += 0.001)
       {
           llSay(0,"Time passed in milliseconds: " + (string)milliseconds));
       }
   }

}</lsl>

Deep Notes

Signature