Sprite with box collider gets stuck on nothing

I have a controlled sprite using a rigidbody 2D and AddForce. For some reason the sprite seems to get stuck when there is nothing to get stuck on. Force is still being applied to the sprite but it refuses to move.

The rigidbody 2D is set to “Fixed Angle”. If I remove this then the character will keep moving past these points, but flip 90 degrees when it hits one of them.

The location this happens is random but the following screen is from one of these times.

As you can see, the ground (also sprites) have a rigidbody 2D attached but there is no intersection or collision that would prevent movement. If the character jumps over this section then I can move around again (even over the same spot it got stuck initially).

Here is another screen from a 3D perspective

He actually gets stuck on the edge of the tiled surface, try to give the collider a physicsmaterial with 0 friction,

This seems to work for me. Thanks alot Gorbit! I’ve been struggling with this issue for a while now.