Multiple Branches?

Just for the sake of testing I wanted to simulate rolling a dice and recording the result. But that ended up with a really long and tedious system of tons of Branches. If the result = 1 is True, record roll as a 1, if not, move to the next branch which is: If the result = 2 is True, record roll as a 2 … etc

Is there an easier way to do this? Is there a way I can create a single branch node with multiple conditions leading to multiple outcomes?

Try switch on integer node
:slight_smile:
Paul G

5 Likes

This might be a record for the fastest and most helpful reply I’ve received!

3 Likes