Continue; for loop

Hello,
Is there a node that acts like Continue; for a for loop?
I can’t seem to find one.
I’ve just been using a branch node as a substitute for now.

As far as I can think, the way that loops work in Blueprint wouldn’t allow for ‘Continue’ the way it works in programming languages. Branching and doing nothing is probably the cleanest thing you can do. If you wanted to though, you can recreate the forloop macro with a continue input that would simply do nothing, but that would be messy having an execution line running back to the for node

Edit: Even with the continue node, it wouldn’t halt execution of the rest of the loop, obviously

You can use a forloopwithbreak which would continue until broken or finished.

Thanks that’s what I was thinking.
Branching pretty much serves the same purpose which is kind of cool.

Late Reply. but you can do a continue as in skip the current iteration. all you have to do is copy the For each loop macro to your own macro library then on the input side add and exec called continue. From that exec just do an ‘assign’ Variable= loop counter, Value= loop counter + 1. Not exactly the same but when the continue is hit it will go past the next iteration and keep going. This is different to a break since it wont immediately exit the loop.