diff --git a/src/physics_entity.c b/src/physics_entity.c index 5145ede..4e86d2a 100644 --- a/src/physics_entity.c +++ b/src/physics_entity.c @@ -36,7 +36,7 @@ Vector _internal_calculate_contact_force(RigidBody* self, Contact* contact) { const float damping = 0.0; const float push = vdotf(normal, velocity); - return vsubf(vmulff(normal, elasticity * fmaxf(1.0, -push)), vmulff(normal, damping * fminf(0.0, push))); + return ZeroVector; //vsubf(vmulff(normal, elasticity * fmaxf(1.0, -push)), vmulff(normal, damping * fminf(0.0, push))); } static inline