Skip to content

Commit

Permalink
Adjusts background speed to be a little faster
Browse files Browse the repository at this point in the history
  • Loading branch information
joncloud committed Jan 29, 2020
1 parent a86ff89 commit 8f871e6
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/Tetrominoes/MatchComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -124,18 +124,18 @@ static float GetBackgroundSpeedForRowHeight(int rowHeight)
{
return rowHeight switch
{
00 => 0.0030f,
01 => 0.0030f,
02 => 0.0030f,
03 => 0.0030f,
04 => 0.0030f,
05 => 0.0030f,
06 => 0.0030f,
07 => 0.0030f,
08 => 0.0030f,
09 => 0.0030f,
10 => 0.0030f,
11 => 0.0030f,
00 => 0.0070f,
01 => 0.0065f,
02 => 0.0060f,
03 => 0.0055f,
04 => 0.0050f,
05 => 0.0045f,
06 => 0.0040f,
07 => 0.0035f,
08 => 0.0034f,
09 => 0.0033f,
10 => 0.0032f,
11 => 0.0031f,
12 => 0.0030f,
13 => 0.0029f,

Expand Down

0 comments on commit 8f871e6

Please sign in to comment.