1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 02:32:55 +08:00

Added missing braces

This commit is contained in:
TacoGuyAT 2022-07-21 06:38:33 +03:00
parent ed8e065a86
commit d6c3a52494

View File

@ -323,13 +323,17 @@ namespace osu.Game.Screens.Menu
} }
if (amplitudes.Maximum > 0.3f) if (amplitudes.Maximum > 0.3f)
{
this.Delay(early_activation / 2).Schedule(() => this.Delay(early_activation / 2).Schedule(() =>
{
triangles.Velocity = (float)Interpolation.Damp( triangles.Velocity = (float)Interpolation.Damp(
triangles.Velocity, triangles.Velocity,
triangles_paused_velocity * (effectPoint.KiaiMode ? 6 : 2) + amplitudeAdjust * (effectPoint.KiaiMode ? 8 : 4), triangles_paused_velocity * (effectPoint.KiaiMode ? 6 : 2) + amplitudeAdjust * (effectPoint.KiaiMode ? 8 : 4),
0.3f, 0.3f,
Time.Elapsed Time.Elapsed
)); );
});
}
} }
public void PlayIntro() public void PlayIntro()