Difference between revisions of "Stopwatch(float precision time)"

From Second Life Wiki
Jump to navigation Jump to search
(New page: {{LSL_Event |event_id |mode=request |func_sleep |func_energy |event=stopwatch |p1_type=float |p1_name=milli_seconds |p1_desc= |func_desc= stopwatch(float precision_time) Should work like ...)
 
Line 7: Line 7:
|p1_type=float
|p1_type=float
|p1_name=milli_seconds
|p1_name=milli_seconds
|p1_desc=
|p1_desc=undefined


|func_desc= stopwatch(float precision_time) Should work like timer() and react to llSetTimerEvent(float time), but with higer precision.
|func_desc= stopwatch(float precision_time) Should work like timer() and react to llSetTimerEvent(float time), but with higer precision.
|return_text
|return_text
|spec=Timer does not work on millisecons base, this new event state would. In the current timer event there is no high speed precision possible.  
|spec=current Timer which uses " [[timer()]] " 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 have to be executed client-side to work. Please comment!
|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.


|examples=<pre>
|examples=<pre>

Revision as of 15:27, 24 September 2007

   'event_desc' can not be undefined

(Please define a value for 'event_desc' to describe the events actions.)
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 ){ ; }

event_desc undefined

• float milli_seconds undefined

Specification

current Timer which uses " timer() " 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

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

Deep Notes

Signature