From 9740c699dcc84ce29c60fac755a84331ba8d7f62 Mon Sep 17 00:00:00 2001 From: Daniel Chappuis Date: Wed, 26 Jun 2019 12:09:19 +0200 Subject: [PATCH] Modify default value for restitutionVelocityThreshold --- src/configuration.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/configuration.h b/src/configuration.h index 958de50a..3dae1e18 100644 --- a/src/configuration.h +++ b/src/configuration.h @@ -129,7 +129,7 @@ struct WorldSettings { decimal defaultBounciness = decimal(0.5); /// Velocity threshold for contact velocity restitution - decimal restitutionVelocityThreshold = decimal(1.0); + decimal restitutionVelocityThreshold = decimal(0.5); /// Default rolling resistance decimal defaultRollingRestistance = decimal(0.0);