m Fix type links and type color in protoflux preview |
m TODO -> stub |
||
Line 20: | Line 20: | ||
A simple Stopwatch node. | A simple Stopwatch node. | ||
{{stub}} | |||
== Inputs == | == Inputs == | ||
Line 65: | Line 65: | ||
== Examples == | == Examples == | ||
{{stub}} | |||
[[Category:ProtoFlux:Time]] | [[Category:ProtoFlux:Time]] |
Revision as of 14:30, 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)
The current Time state of the Stopwatch as a (Float) value.
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.