Skip to content

Commit

Permalink
Track speed to two decimals (#318)
Browse files Browse the repository at this point in the history
  • Loading branch information
LocalH authored May 13, 2023
1 parent 1d22dce commit 574018e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Script/UI/PlayerSection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public void SetPlayer(PlayerManager.Player player) {
this.player = player;

playerName.text = player.DisplayName;
trackSpeedField.text = player.trackSpeed.ToString("N1", CultureInfo.InvariantCulture);
trackSpeedField.text = player.trackSpeed.ToString("N2", CultureInfo.InvariantCulture);
leftyFlipToggle.isOn = player.leftyFlip;

// Pro-guitar lefty flip is a little bit more complicated (TODO)
Expand Down

0 comments on commit 574018e

Please sign in to comment.