So i have a blueprint that gets x- and y- coordinates out of a data table and then moves objects to the locations. After that it stops. How do i make a loop that repeats the same process for the next row and so on?
Looks correct. What do you mean by not working?
My objects are not moving anymore. If i set the row name manually their moving to that 1 location. But with the loop nothing is moving.
when using the Move To, it required the setup of a nav mesh.
if you doing a Set Actor Location directly inside the loop body, the for each loop will do everything at one go, so you will see only the last index location.
yes that how for each work, it will do everything at one go.
so you will need to do a manual loop with an event that will tell (on destination reached)
you can also use a timeline with a lerp to move your object and when it completed, call the next location.
Im already moving the objects with a timeline and lerp. how do I call the next location?
Assuming this is still the same thing.
just like everynone just posted but with a custom event at the begining and a call that custom event after the ++




