Clarify Time value |
No edit summary |
||
Line 32: | Line 32: | ||
=== Stop ([[Impulses|Call]]) === | === Stop ([[Impulses|Call]]) === | ||
Call this to Stop the Stopwatch | Call this to Stop the Stopwatch => puts the Stopwatch into a Stopped state. (default) | ||
Does nothing if the Stopwatch is already in the Stopped state. | Does nothing if the Stopwatch is already in the Stopped state. | ||
If Stopwatch Reset was not called, Time Output will be the value it was when it was last in a Stopped state. (default 0) | If Stopwatch Reset was not called, Time Output will be the value it was when it was last in a Stopped state. (default 0) |
Revision as of 14:53, 2 March 2024
A simple Stopwatch node.
This article or section is a Stub. You can help the Resonite Wiki by expanding it.
Inputs
Start (Call)
Call this to Start the Stopwatch => puts the Stopwatch into a Running state. Does nothing if the Stopwatch is already in the Running state. If Stopwatch Reset was not called, Time Output will continue from the value it was when it was last in a Stopped state.
Stop (Call)
Call this to Stop the Stopwatch => puts the Stopwatch into a Stopped state. (default) Does nothing if the Stopwatch is already in the Stopped state. If Stopwatch Reset was not called, Time Output will be the value it was when it was last in a Stopped state. (default 0)
Reset (Call)
Call this to Reset the Stopwatch => puts the Stopwatch into a Stopped state. (default) Calling Reset sets the Time Output to zero (0).
Outputs
OnStarted (Continuation)
Sends an impulse after a Start (Call) has been impulsed.
OnStopped (Continuation)
Sends an impulse after a Stop (Call) has been impulsed.
OnReset (Continuation)
Sends an impulse after a Reset (Call) has been impulsed.
Time (Float)
Returns the amount of time since the stopwatch has been started, as a (Float) representing seconds.
IsRunning (Bool)
Is true if the Stopwatch is in a Running state and false if the Stopwatch is in a Stopped state.
Examples
This article or section is a Stub. You can help the Resonite Wiki by expanding it.