From 0536d654a918f089e8b50e2034a2f012caebed96 Mon Sep 17 00:00:00 2001 From: RuiAlonso Date: Wed, 4 May 2022 09:48:25 +0200 Subject: [PATCH] refactor: sandbox for spaceshipramp modified --- .../sandbox/lib/stories/android_acres/spaceship_ramp_game.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/pinball_components/sandbox/lib/stories/android_acres/spaceship_ramp_game.dart b/packages/pinball_components/sandbox/lib/stories/android_acres/spaceship_ramp_game.dart index 468827ef..e9af32a6 100644 --- a/packages/pinball_components/sandbox/lib/stories/android_acres/spaceship_ramp_game.dart +++ b/packages/pinball_components/sandbox/lib/stories/android_acres/spaceship_ramp_game.dart @@ -54,7 +54,7 @@ class SpaceshipRampGame extends BallGame with KeyboardEvents { ) { if (event is RawKeyDownEvent && event.logicalKey == LogicalKeyboardKey.space) { - //_spaceshipRamp.progress(); + _spaceshipRamp.bloc.onBallInside(); return KeyEventResult.handled; }