Move all actors in an array at once

Hi all,

So I have an array of actors inside a BP and I’d like to change all of their z coordinates smoothly moving it upwards together so all the actors move up at once.
How can I do this?

CPU can’t do things to all objects at once, we still don’t have quantum computers to do so :stuck_out_tongue: so you need to do that in sequence for each object in array, ForEachLoop node will help you to do so

But what if I’m using a timelien to move it?

Woudn’t wiring a for each loop into → a timeline into → an add actor offset run the timeline-> move actor1 then run timeline-> move actor 2?

If you just use a ForEach loop they will all move together at once. It’s all done in one CPU cycle/frame.