From 6d58fa3d0d1b033171dfe3f5b6322e94cb7c4829 Mon Sep 17 00:00:00 2001 From: alestiago Date: Wed, 16 Mar 2022 09:39:39 +0000 Subject: [PATCH] feat: removed Wall friction --- lib/game/components/wall.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/game/components/wall.dart b/lib/game/components/wall.dart index c433365c..017f8c4d 100644 --- a/lib/game/components/wall.dart +++ b/lib/game/components/wall.dart @@ -26,7 +26,7 @@ class Wall extends BodyComponent { final fixtureDef = FixtureDef(shape) ..restitution = 0.1 - ..friction = 0.3; + ..friction = 0; final bodyDef = BodyDef() ..userData = this