Disclaimer: Apologies in advance for my poor English. Hey everyone! I’m new to Unreal Engine 5 and would like to ask for your help. I’m currently working on a Soulslike game because I’m a huge fan of the series. Right now, I’m building a target system using Multi-Sphere Trace , but I want to know how to set up multiple target points on large enemies (e.g., left leg, right leg). Currently, my character only locks onto the enemy’s main Actor, which targets the center of their body.
i use an interface, I call it GetTargetLocations. I pass in a GameplayTag eg Target.Leg.Left
inside the event, SwitchOnTag Get the location however you want (Mesh->GetSocketLocation) and return it.
or you could just return the Mesh and go directly to GetSocketLocation, or just pass in Name instead of GameplayTag.
you can also have a GetAllTargetPoints which returns whats valid for that Actor (could be different between a Character and a Tank)
Please show an example. I don’t fully understand how to do this because I’m inexperienced. Are there any videos on this topic?"