I’ve never seemed to have this happen before with Destroy Actor (or maybe it has to do with the interaction in general I’m not quite sure what’s happening).
So I have a basic blueprint script to Destroy an actor when you interact with it after playing an animation. I set up in the player character blueprint. I’ll put it below. I placed the actor to be destroyed in the world, and no issues there I can interact with and destroy it. But if I duplicate it (whether that is by dragging more out into the map or holding alt+dragging to the side) it starts acting weird.
If there is more than 1 it forces me to interact with the first one I made first, then the second, then the third. If I try to interact with them out of order nothing happens, no animation, no destroying, nothing. But once I interact with the first one I placed, I can interact with the second no problem (but not the third), so on so forth.
I’m not caring what order they’re in, I want the player to be able to pick them up in any order they want. Right now it’s forcing the player to pick them up in a specific order and I don’t want that. Is that caused by the Get node then?
How would I reference the actor ‘Food’ to tell it to destroy that actor if I can’t use ‘GetAllActorsOfClass’ then?
Okay I re-read what you said and thought about it! I understand more now.
I switched to casting to the food and used ‘event actor begin overlap’ and grabbed the other actor node for the object. Connected it all in and now it’s working as intended.