How can I set a collider to not overlap with all other components?
I have colliders attached to the character hand/weapon bones. These colliders have a custom collision channel named HitBox. This channel only overlaps with other HitBox objects.
The Skeletal Mesh collision object type is also set to HitBox. The reasoning behind wanting the hands/weapons having their own colliders that have the same channel as the skeletal mesh, is to be able to control the size of the collider and not be constrained to the dimensions of the skeletal/weapon mesh.
I know I can just check if the overlap is of the same character, that’s not the issue. But for performance sake I’d like to disable all overlap events between all components of the same character as to never have to bother checking every time they overlap.
Is this possible? If not, is checking every time they overlap going to even cause a notable performance hit? This is a Player character, and every game would have at most 32 players.