There are cases where I want to make a box collider different sizes in each direction. For example, suppose I have a stairway that is twice as wide as it is high, and I want to place a box collider on it like a ramp. It would naturally be wide, have some length from bottom to top, and only a small thickness (like the floor).
In some cases, such as if there’s nothing under the stairs, and it’s in a hallway so there’s nothing beside it, I could just make the entire box collider use the largest dimension (i.e. the width) in all three axes.
My question: is there any performance reason for doing so? Will the box collider’s uniform size make calculations any faster?