Can you get actors attached at specific socket?

I have an actor with many children actors and many slots, is there built in functionality for getting the actor(s) at a specific slot, only knowing the slot name from the parent actor.

I want a solution in bp for simplicity, but if its implemented only in cpp then I can make a custom node if told the function, thanks in advance.

The attach socket can actually be taken from the ChildActor so my approach would be to get all attached actors, get their sockets and find the ones I’m interested in:


In C++ would be beneficial if you do it very often and have too many child actors.

1 Like

I shouldn’t do it too often, that’ll work for my purposes, thanks.