flow
(flow): The main input that triggers the counter. Each time a signal is received on this input, the counter increments by 1.reset
(flow): An optional input to reset the counter back to 0. When a signal is received on this input, the count is reset.flow
(flow): The main output that forwards the incoming flow signal. This allows you to chain the Counter node with other nodes in your spell.count
(integer): Outputs the current count value each time the node is triggered.flow
input to the node or event that you want to count.reset
input to a node or event that should reset the counter when triggered.count
output to any node that needs to receive the current count value, such as a Number or Debug node.flow
output can be connected to subsequent nodes in your spell to continue the flow execution.reset
input of the Counter node. When clicked, this button will reset the counter back to 0.
reset
input if you need a way to manually reset the count back to 0 at any point in your spell’s execution.flow
input. Make sure to connect it appropriately based on your counting requirements.flow
input is properly connected to the node or event you want to count.reset
input is correctly connected to the desired reset trigger.