Behaviour graph switch cases into single node

Hi!

I’m using behaviour graph for the first time and figuring things out, and I’m running into this situation a little bit:
I have a switch with an enum that I use in a few places for different things, so quite often multiple cases will lead to an identical node with identical parameters. Just for my brain and to avoid potential confusion if something isn’t linked right, I would love if I could have multiple cases lead into the same node-- but I haven’t found a way to make this possible yet (and if there already is a way to do this, apologies!).

I can imagine there could be foundational, unfixable issues with this to do with graph flow etc, but my brain is too small in this moment to think of those possibilities!

Just thought I’d flag and say it would be a nice little thing to have, but definitely isn’t that important lol

[What I need to do at the moment]


[What I wish I could do]

Hey, there actually already is a node for this, you want the “Wait For Any” node. You would connect both Running and Idle to it like in your second screenshot, and then connect the output to your Run subgraph node.

Thank you so much!! That simplifies things a lot :))