Unit Reference StopwatchUnit - RealityStop/Bolt.Addons.Community GitHub Wiki
Measures elapsed time using a Stopwatch. You can start and stop the stopwatch and retrieve elapsed time in various units.
Input Ports
- Start : Starts the stopwatch.
- Stop : Stops the stopwatch.
Output Ports
- Started : Invoked immediately after the stopwatch is started.
- Stopped : Invoked immediately after the stopwatch is stopped.
- ElapsedSeconds : Returns the elapsed time in seconds.
- ElapsedMilliseconds : Returns the elapsed time in milliseconds.
- ElapsedMinutes : Returns the elapsed time in minutes.
- ElapsedHours : Returns the elapsed time in hours.
-
IsRunning : Returns
trueif the stopwatch is currently running, otherwisefalse.