What does this mean? Can someone explain to me how to fix this?

The box collider is a child of the object it is attached to. When the box collider’s size is 1,1,1 like yours, it means the size is exactly the same as the object - a 1 to 1 match. Your object, in this case, has a negative value in scale
image
which means the box collider also has this negative scale.

To fix it, you either need to remove the negative scale on the object by rotating it, instead of scaling it negatively, or by flipping the box collider back by setting its size on the z to -1. I would lean towards the first option and have no idea if the second one would even work or be allowed.

1 Like

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.

Privacy & Terms