mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 14:25:05 +08:00
removing parameter name abbreviations
This commit is contained in:
parent
b573e42cc2
commit
c1876aac88
@ -127,18 +127,18 @@ namespace osu.Game.Screens.Select
|
||||
|
||||
private Bindable<float> backgroundBlurLevel { get; set; } = new BindableFloat();
|
||||
|
||||
private void applyBackgroundBlur(float v)
|
||||
private void applyBackgroundBlur(float blurLevel)
|
||||
{
|
||||
ApplyToBackground(background =>
|
||||
{
|
||||
background.IgnoreUserSettings.Value = true;
|
||||
background.BlurAmount.Value = v * BACKGROUND_BLUR;
|
||||
background.BlurAmount.Value = blurLevel * BACKGROUND_BLUR;
|
||||
});
|
||||
}
|
||||
|
||||
private void applyBackgroundBlur(ValueChangedEvent<float> v)
|
||||
private void applyBackgroundBlur(ValueChangedEvent<float> blurLevelValueChange)
|
||||
{
|
||||
applyBackgroundBlur(v.NewValue);
|
||||
applyBackgroundBlur(blurLevelValueChange.NewValue);
|
||||
}
|
||||
|
||||
[BackgroundDependencyLoader(true)]
|
||||
|
Loading…
Reference in New Issue
Block a user