From c2fcd7fcc02b0b1efa57539b2f9002abc3b0ba34 Mon Sep 17 00:00:00 2001 From: arturplaczek Date: Mon, 2 May 2022 11:02:51 +0200 Subject: [PATCH] fix: change animation speed to 12fps --- lib/game/view/widgets/bonus_animation.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/game/view/widgets/bonus_animation.dart b/lib/game/view/widgets/bonus_animation.dart index da67e1aa..35e600f2 100644 --- a/lib/game/view/widgets/bonus_animation.dart +++ b/lib/game/view/widgets/bonus_animation.dart @@ -126,7 +126,7 @@ class _BonusAnimationState extends State ); animation = spriteSheet.createAnimation( row: 0, - stepTime: 1 / 24, + stepTime: 1 / 12, to: spriteSheet.rows * spriteSheet.columns, loop: false, );