From bb85cc9a1ca3469c4899672a68e55654d6937822 Mon Sep 17 00:00:00 2001 From: RuiAlonso Date: Tue, 29 Mar 2022 15:21:07 +0200 Subject: [PATCH] refactor: moved board --- lib/game/components/board.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/game/components/board.dart b/lib/game/components/board.dart index 34ef4d33..6232879c 100644 --- a/lib/game/components/board.dart +++ b/lib/game/components/board.dart @@ -13,8 +13,8 @@ class Board extends Component { // TODO(alestiago): adjust positioning once sprites are added. final bottomGroup = _BottomGroup( position: Vector2( - PinballGame.boardBounds.center.dx, - PinballGame.boardBounds.bottom + 10, + PinballGame.boardBounds.center.dx - 5, + PinballGame.boardBounds.bottom + 20, ), spacing: 2, );