Hi. I’m new to Unity. For example, I made a character on Blender that is composed of multiple objects. It’s kind of like Kirby. Then I want to export it to Unity so I can use it for a game I’m making. I know that there are different kinds of colliders like box collider, sphere collider, etc. What kind of collider should my character have?
If your character resembles Kirby, you should use a simple sphere collider.
If you have animations, depending on how your collider is setup and how far the animation move/stretch your character, you might need to use a composite collider ( using multiple collider and parent all of them to the character ).
If the animations change your character minimally (in another word, your character still kinda looks kinda round throughout all the animations ), you can just go with a sphere collider, you just need to adjust the position and scale of the sphere collider to meet your need.
if you need absolute collision detection you could use mesh colliders but keep in mind that it will be very expensive otherwise you could use box collider!