mirror of
https://github.com/osukey/osukey.git
synced 2025-08-06 16:13:57 +09:00
Merge pull request #4371 from nyquillerium/UserDimLogic
Fix song select blur potentially never being applied
This commit is contained in:
@ -15,6 +15,9 @@ namespace osu.Game.Screens
|
|||||||
protected Vector2 BlurTarget;
|
protected Vector2 BlurTarget;
|
||||||
|
|
||||||
public TransformSequence<Background> BlurTo(Vector2 sigma, double duration, Easing easing = Easing.None)
|
public TransformSequence<Background> BlurTo(Vector2 sigma, double duration, Easing easing = Easing.None)
|
||||||
=> Background?.BlurTo(BlurTarget = sigma, duration, easing);
|
{
|
||||||
|
BlurTarget = sigma;
|
||||||
|
return Background?.BlurTo(BlurTarget, duration, easing);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user