Skip to content

Commit

Permalink
fix: zoom level for plunger (flutter#453)
Browse files Browse the repository at this point in the history
  • Loading branch information
allisonryan0002 authored May 10, 2022
1 parent ad77839 commit e90de8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/game/behaviors/camera_focusing_behavior.dart
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class CameraFocusingBehavior extends Component
position: _foci[GameStatus.waiting]?.position ?? Vector2(0, -112),
),
GameStatus.playing: _FocusData(
zoom: size.y / 165,
zoom: size.y / 160,
position: _foci[GameStatus.playing]?.position ?? Vector2(0, -7.8),
),
GameStatus.gameOver: _FocusData(
Expand Down

0 comments on commit e90de8d

Please sign in to comment.