From 76caecfc3484b20cb8bd06fbb5d78e7c906f5f62 Mon Sep 17 00:00:00 2001 From: Erick Zanardo Date: Wed, 30 Mar 2022 10:21:03 -0300 Subject: [PATCH] feat: improved wall area for the spaceship --- 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..4bc21e4e 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)