(Redirected from ProtoFlux:Delay (Flow))
Delay
Flow
Delay is a ProtoFlux node that allows for delaying an Async execution for the provided Duration (Pseudo-generic) before continuing.
Inputs
* (AsyncCall)
Start the delay.
Duration (Pseudo-generic)
How long to delay for in seconds or timespan.
Outputs
Next (Continuation)
Fires on the next game tick once the given duration has passed since the Delay was triggered and OnTriggered has finished. If OnTriggered takes longer than the delay duration to finish, Next will be executed immediately after.
OnTriggered (AsyncCall)
Fires immediately after the Delay is triggered. This impulse chain will block Next, e.g. if it contains another Delay with a higher duration.
Examples
-
Delay being used as a way to cause something to happen a bit after someone presses a button.