So I’m creating a multiplayer shooter and I implemented an interaction system using a sphere collision on the player in order to detect nearby interactable objects. However, when a bullet is shot at a player, the hitbox of the player is now as big as the sphere collision. How can I make the bullet ignore the sphere collision of players?
you should create a custom collision channels for interactions
then on your sphere collision disable all collisions except overlap with interaction.
2 Likes