From 76e19c98e6a6bc9518cfd6a2f8777b7d972d5146 Mon Sep 17 00:00:00 2001 From: RuiAlonso Date: Wed, 6 Apr 2022 15:38:52 +0200 Subject: [PATCH] fix: fixed size and tracing --- .../lib/src/components/sparky_bumper.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/pinball_components/lib/src/components/sparky_bumper.dart b/packages/pinball_components/lib/src/components/sparky_bumper.dart index dcd9c18f..47ff8403 100644 --- a/packages/pinball_components/lib/src/components/sparky_bumper.dart +++ b/packages/pinball_components/lib/src/components/sparky_bumper.dart @@ -25,7 +25,7 @@ class SparkyBumper extends BodyComponent with InitialPosition { inactiveAssetPath: Assets.images.sparkyBumper.a.inactive.keyName, spriteComponent: SpriteComponent( anchor: Anchor.center, - position: Vector2(-0.1, -0.2), + position: Vector2(0, -0.1), ), ); @@ -36,7 +36,7 @@ class SparkyBumper extends BodyComponent with InitialPosition { inactiveAssetPath: Assets.images.sparkyBumper.b.inactive.keyName, spriteComponent: SpriteComponent( anchor: Anchor.center, - position: Vector2(-0.1, -0.2), + position: Vector2(0.1, -0.2), ), ); @@ -47,7 +47,7 @@ class SparkyBumper extends BodyComponent with InitialPosition { inactiveAssetPath: Assets.images.sparkyBumper.c.inactive.keyName, spriteComponent: SpriteComponent( anchor: Anchor.center, - position: Vector2(0.2, -0.2), + position: Vector2(0.21, -0.3), ), );