You’re pretty close. The reason plugging the output of Get Attach Parent
into the “Actors to Ignore” array is not working is because this function returns the SceneComponent
the actor is attached to, not the parent actor.
To get the parent actor you need to call Get Attach Parent Actor
which returns the parent actor and will plugin into the “Actors to Ignore List” and get ignored by the line trace succesfully.
Hope this helps!