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

Lower filter cutoff frequency

This commit is contained in:
Jamie Taylor 2021-11-11 11:00:55 +09:00
parent b13d020a49
commit e33c1f9a41
No known key found for this signature in database
GPG Key ID: 2ACFA8B6370B8C8C

View File

@ -356,7 +356,7 @@ namespace osu.Game.Screens.Play
content.FadeInFromZero(400);
content.ScaleTo(1, 650, Easing.OutQuint).Then().Schedule(prepareNewPlayer);
lowPassFilter.CutoffTo(1000, 650, Easing.OutQuint);
highPassFilter.CutoffTo(300);
highPassFilter.CutoffTo(150);
ApplyToBackground(b => b?.FadeColour(Color4.White, 800, Easing.OutQuint));
}