mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
CI Fixes
This commit is contained in:
@ -22,12 +22,12 @@ namespace osu.Game.Screens.Menu
|
|||||||
|
|
||||||
private readonly Bindable<WorkingBeatmap> beatmap = new Bindable<WorkingBeatmap>();
|
private readonly Bindable<WorkingBeatmap> beatmap = new Bindable<WorkingBeatmap>();
|
||||||
|
|
||||||
private Box leftBox;
|
private readonly Box leftBox;
|
||||||
private Box rightBox;
|
private readonly Box rightBox;
|
||||||
|
|
||||||
private const float amplitude_dead_zone = 0.25f;
|
private const float amplitude_dead_zone = 0.25f;
|
||||||
private const float alpha_multiplier = (1 - amplitude_dead_zone) / 0.55f;
|
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 int box_max_alpha = 200;
|
||||||
private const double box_fade_in_time = 65;
|
private const double box_fade_in_time = 65;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user