Hello there
I wonder if it is possible to determine the jump node depending on a context variable? Like an if-else-statement. Example: Depending on the context variable “trigger” the jump should go to node 1 or node 2. In code it would be something like:
if (trigger) {
jump to node1
} else {
jump to node2
}
Thank you in advance!