Why there are no BP WhileLoop With Break?

Hi.

Why there are no BP WhileLoop With Break?

http://s6.postimg.org/m8yh0a1rl/screenshot_119.png

Can your team add it?

a while loop is a loop with a break. you just change its conditional boolean to false to break it.

you can also use more than 1 boolean by using an And node, so one of the booleans could be called bKeepLooping, and you just set it to false to break out of the loop.

1 Like

Thank you!