i'm developing an app that uses Box2d. i have a world with several blocks and an object that collides with them. at the moment the collision starts, the objects start to change their shape, they get more large. what could be causing that.
i'm creating the bodies in fixed positions and in sleep state. also shapeDef->friction = 0.8f; shapeDef->density = 1.0f; shapeDef->restitution = 0.2f;
maybe i'm not using the right physics parameters, i don't want that deformation. just the movement and the body keeping its original form.