ProtoFlux:Once Per Frame: Difference between revisions

From Resonite Wiki
forgot examples and category
added link to impulses
Line 12: Line 12:
|}}
|}}


This node will restrict the amount of impulses that go through Next (Continuation) to one impulse per game tick. This is useful if you have multiple code branches that may or may not execute at the same time, but you want to run code after all of those branches only once.
This node will restrict the amount of impulses that go through Next ([[Impulses | Continuation]]) to one impulse per game tick. This is useful if you have multiple code branches that may or may not execute at the same time, but you want to run code after all of those branches only once.


Currently, Game Ticks and Framerate are locked and bound to one another. That is until Sauce replaces Unity and the engine threads are made separate.
Currently, Game Ticks and Framerate are locked and bound to one another. That is until Sauce replaces Unity and the engine threads are made separate.
Line 18: Line 18:
== Inputs ==
== Inputs ==


=== * (Call) ===  
=== * ([[Impulses | Call]]) ===  


Tell this node to send an impulse out of Next (Continuation). Will only send one impulse in a game tick, ignoring every subsequent request during the game tick.
Tell this node to send an impulse out of Next ([[Impulses | Continuation]]). Will only send one impulse in a game tick, ignoring every subsequent request during the game tick.


== Outputs ==
== Outputs ==


=== Next (Continuation) ===
=== Next ([[Impulses | Continuation]]) ===


Will send an impulse only once in a game tick after * (Call) has been called during a game tick.
Will send an impulse only once in a game tick after * ([[Impulses | Call]]) has been called during a game tick.


== Examples ==
== Examples ==

Revision as of 00:25, 4 February 2024

Once Per Frame
*
Next
Flow

This node will restrict the amount of impulses that go through Next ( Continuation) to one impulse per game tick. This is useful if you have multiple code branches that may or may not execute at the same time, but you want to run code after all of those branches only once.

Currently, Game Ticks and Framerate are locked and bound to one another. That is until Sauce replaces Unity and the engine threads are made separate.

Inputs

* ( Call)

Tell this node to send an impulse out of Next ( Continuation). Will only send one impulse in a game tick, ignoring every subsequent request during the game tick.

Outputs

Next ( Continuation)

Will send an impulse only once in a game tick after * ( Call) has been called during a game tick.

Examples

This article or section is a Stub. You can help the Resonite Wiki by expanding it.