Skip to content

Commit

Permalink
Fixes movement stuttering
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkSuckerberg committed Aug 27, 2024
1 parent d9de314 commit 68795e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Blocktest/Code/Scenes/GameScene.cs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ private void HandleInput() {
_gameUi.BlockSelector.SelectedIndex = BlockSelected;
}

float moveValue = 2.5f;
float moveValue = 2f;
if (currentKeyboardState.IsKeyDown(Keys.LeftShift) || currentKeyboardState.IsKeyDown(Keys.RightShift)) {
moveValue *= 4;
}
Expand Down

0 comments on commit 68795e1

Please sign in to comment.