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), ), );