From 54bdd56a826e0e990ae19bc125d4e8aff4bd3126 Mon Sep 17 00:00:00 2001 From: Jondolf Date: Mon, 8 Aug 2022 19:24:25 +0300 Subject: [PATCH] Change default friction from 0.7 to 0.3 --- src/components/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/mod.rs b/src/components/mod.rs index 639ed1c6..8925887d 100644 --- a/src/components/mod.rs +++ b/src/components/mod.rs @@ -200,7 +200,7 @@ impl Friction { impl Default for Friction { fn default() -> Self { - Self::new(0.7) + Self::new(0.3) } }