I’m not 100% sure if this is a bug or working as intended, but with a setup like this:
while{
__action1
__sequential block{
____action2
__}
}
The log shows execution like this of action1 and action2 for 3 iterations:
action1
action2
action2
action2
action1
action1
while I would expect this result:
action1
action2
action1
action2
action1
action2
If I actually do some work in action 1 and 2 (like updating an int variable) it seems like they are actually executed the way I would expect so it’s just the logs that are confusing. Nevertheless, I spent a good hour trying to figure out what I had done wrong
See attached photos of my action setup and logs