I have attached a very simple 2D Breakout game, but the physics aren’t working as I expect.
When the ball hits a wall, a brick or the paddle at a very shallow angle, it’s return angle will be zero or close to zero, but the physics material I have attached to each element has 0 friction and 1 bounce so I would have expected the bounce to return the same angle.
Do I need to implement my own physics for this sort of thing?
I have attached an image of what I am experiencing.
I have found a unity forum article.
Looks like an issue with the implementation of Box2D and not exposing of some properties that would allow it to work for me.
They give other solutions though.
I’m not the only one who was trying to make a Breakout game