mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 07:06:35 +09:00
removing parameter name abbreviations
This commit is contained in:
@ -127,18 +127,18 @@ namespace osu.Game.Screens.Select
|
|||||||
|
|
||||||
private Bindable<float> backgroundBlurLevel { get; set; } = new BindableFloat();
|
private Bindable<float> backgroundBlurLevel { get; set; } = new BindableFloat();
|
||||||
|
|
||||||
private void applyBackgroundBlur(float v)
|
private void applyBackgroundBlur(float blurLevel)
|
||||||
{
|
{
|
||||||
ApplyToBackground(background =>
|
ApplyToBackground(background =>
|
||||||
{
|
{
|
||||||
background.IgnoreUserSettings.Value = true;
|
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)]
|
[BackgroundDependencyLoader(true)]
|
||||||
|
Reference in New Issue
Block a user