Get all actor of class with more than one objects

Hello everyone! I’ve run into the problem in my project that no matter how much I call Get all actor of class and then For each loop, it only marks one dropped object and not all of them. (in short, it’s a scanner that marks multiple objects)
Does anyone have any ideas?


It’s because of that Delay node that you have, it’s not doing what you think it is. Your loop runs over all the objects triggering the delay. But then when the delay’s complete triggers Array Element will always be the last one. Array Element isn’t saved and restored in any way to make the graph state be the same as it was when the Delay started.

To do this sort of thing, you’d have to make the loop manually, doing a the length and counting your current index and having a physical loop back to the start once you’ve handled one actor. Or use a timer to handle one actor before setting the timer again until you handle all the elements of the array.

1 Like

Thank You so much! Have a nice day!