While the plugin automatically handles complex visual feedback such as hit animations, hit-stops, and particle effects, the numerical health deduction (business logic) is left entirely to you. The plugin provides a core dispatcher named ED_OnTakeHit to output collision data detected by weapon overlaps.
Event BeginPlay node.BPC_HandyCombatSystem component into the graph.Bind Event to ED_OnTakeHit. Connect the execution line from Event BeginPlay to this Bind node.Event pin (the small circle input) on the Bind node, drag it to an empty space, and select Create Matching Event.When a weapon collision overlap occurs, this event fires automatically. You can break or read the custom struct from the dispatcher to fetch all essential combat parameters defined by you:
Behind this custom event, you can seamlessly connect your project's existing health/HP system.