Destroy Actor only destroying in order of duplicated actor

I’m back with another strange question…!

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.

Here’s the blueprint:

Edit ignore the casting to ‘Food’ after getting actor ‘food’, I just fixed that redundancy. Issue still persists though.

GetAllActorsOfClass doesnt guarantee any order so your Get node could return any one of them.

you need to find a better way to access your target, overlap, line trace, DistanceTo etc

2 Likes

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?

yes its forcing you to pick them up in the order GetAllActorsOfClass(0) returns and there is no way to know what that is.

it just depends on your game, do you want to find the closest food? the one in front of the player? etc

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.

Thanks a bunch!!

2 Likes