From e7ba6dc91d90328da9e9003a24bdc0f9cf951f25 Mon Sep 17 00:00:00 2001 From: Erick Date: Wed, 30 Mar 2022 10:53:59 -0300 Subject: [PATCH] feat: better spaceship hole area (#109) * feat: improving the spaceship hole area * fix: lint * feat: improved wall area for the spaceship * fix: lint --- packages/pinball_components/lib/src/components/spaceship.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/pinball_components/lib/src/components/spaceship.dart b/packages/pinball_components/lib/src/components/spaceship.dart index 217234a6..257f7fcd 100644 --- a/packages/pinball_components/lib/src/components/spaceship.dart +++ b/packages/pinball_components/lib/src/components/spaceship.dart @@ -238,7 +238,7 @@ class SpaceshipWall extends BodyComponent with InitialPosition, Layered { final bodyDef = BodyDef() ..userData = this ..position = initialPosition - ..angle = 90 * pi / 180 + ..angle = 90 * pi / 172 ..type = BodyType.static; return world.createBody(bodyDef)