1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 15:47:26 +08:00
This commit is contained in:
ColdVolcano 2017-05-22 04:53:32 -05:00
parent a1547f12d4
commit f2b5be27c8

View File

@ -22,12 +22,12 @@ namespace osu.Game.Screens.Menu
private readonly Bindable<WorkingBeatmap> beatmap = new Bindable<WorkingBeatmap>();
private Box leftBox;
private Box rightBox;
private readonly Box leftBox;
private readonly Box rightBox;
private const float amplitude_dead_zone = 0.25f;
private const float alpha_multiplier = (1 - amplitude_dead_zone) / 0.55f;
private const float kiai_multiplier = (1 - (amplitude_dead_zone * 0.9f)) / 0.8f;
private const float kiai_multiplier = (1 - amplitude_dead_zone * 0.95f) / 0.8f;
private const int box_max_alpha = 200;
private const double box_fade_in_time = 65;