Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
garlen-javier committed Feb 18, 2024
1 parent d08e265 commit ba4ecaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/worlds/hud_world.dart
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ class HudWorld extends World with HasGameRef<GameScene>
void update(double dt) {
super.update(dt);
Vector2 velDir = Vector2(_joystick.delta.x.sign, _joystick.delta.y.sign);
playerMovementBloc.move(velDir);
playerMovementBloc.move(velDir);
}

@override
void onGameResize(Vector2 size) {
_gameSize = size;
super.onGameResize(size);
super.onGameResize(size);
}


Expand Down

0 comments on commit ba4ecaf

Please sign in to comment.