mesh collider vs box collider

hi all quick question if i use a mesh collider on a normal primative box is that the same as if i used a box collider.

just asking as im doing a large building template in blender and then making it into a single object and then importing into unity.
as its all with primative boxes the mesh collider should just act as if im making a load of box collider shouldnt it, just trying to save time but not if its going to drain my performance.

im building for ios so its everything.

No, a mesh collider in the shape of a box is not the same thing as a box collider; it’s still a mesh collider and is therefore slower. A single complex mesh collider may or may not be as fast as many box colliders, but it would be easier to work with.

Sounds like you are making a complex mesh just using boxes right? Maybe another way to do it, but what I would do is have a Start script recurse through the object hierarchy replacing the mesh colliders with box colliders (assuming they were imported), or just create box colliders that match up to your boxes. Is your building resulting in a hierarchy of box meshes? Or do you combine all the meshes into one? Or submeshes?