mirror of
https://github.com/osukey/osukey.git
synced 2025-05-08 07:07:18 +09:00
Merge pull request #15242 from peppy/fix-low-pass-sticking-after-fail
Fix low-pass filter continuing to take effect after fail animation has already ended
This commit is contained in:
commit
14a7b00f58
@ -106,6 +106,7 @@ namespace osu.Game.Screens.Play
|
|||||||
|
|
||||||
this.TransformBindableTo(trackFreq, 0, duration).OnComplete(_ =>
|
this.TransformBindableTo(trackFreq, 0, duration).OnComplete(_ =>
|
||||||
{
|
{
|
||||||
|
RemoveFilters();
|
||||||
OnComplete?.Invoke();
|
OnComplete?.Invoke();
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -137,6 +138,9 @@ namespace osu.Game.Screens.Play
|
|||||||
|
|
||||||
public void RemoveFilters()
|
public void RemoveFilters()
|
||||||
{
|
{
|
||||||
|
if (filters.Parent == null)
|
||||||
|
return;
|
||||||
|
|
||||||
RemoveInternal(filters);
|
RemoveInternal(filters);
|
||||||
filters.Dispose();
|
filters.Dispose();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user