[RESOLVED] CountChop increase/decrease

Since the CoundChop doesnt have 2 inputs, one for increase and one for decrease, I wonder how I can have it behave like:
trigger1>increase,
trigger2 > decrease.
Sounds like a simple setup, but I cant get to it.

You can do it, but you actually need to logically combine the two triggers in a way.
The first input needs a 0 → 1 value by default, so you need to combine your up trigger, and down trigger using a max operation.

This will give you a 0-1 no matter which one you click.

Then, for the third input, this is essentially the value to increment the original count value by. If you have 1 here, it goes +1, if you have a -1 here, it goes in the reverse direction. So, the down trigger’s pulse simply needs to be negated and combined with the up trigger, using an add.

base_bi_directional_count.tox (1.3 KB)

Hi lucasm,
i just cheked it out. Perfect. I didnt work with these inputs yet. Thanks a lot!