mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 08:43:01 +08:00
Always recrusively apply custom sequence to nested hitobjects
This commit is contained in:
parent
2c61ebbcd9
commit
27cb445c24
@ -70,8 +70,6 @@ namespace osu.Game.Rulesets.Osu.Mods
|
||||
circle.FadeIn(fadeIn).Then().FadeOut(fadeOut); // override fade in as it somehow gets cut otherwise
|
||||
break;
|
||||
case DrawableSlider slider:
|
||||
slider.InitialCircle.ApplyCustomUpdateState += ApplyHiddenState;
|
||||
|
||||
using (slider.BeginAbsoluteSequence(fadeOutTime, true))
|
||||
{
|
||||
slider.Body.FadeOut(newDuration, Easing.Out);
|
||||
|
@ -246,6 +246,7 @@ namespace osu.Game.Rulesets.Objects.Drawables
|
||||
|
||||
h.OnJudgement += (d, j) => OnJudgement?.Invoke(d, j);
|
||||
h.OnJudgementRemoved += (d, j) => OnJudgementRemoved?.Invoke(d, j);
|
||||
h.ApplyCustomUpdateState += (d, s) => ApplyCustomUpdateState?.Invoke(d, s);
|
||||
nestedHitObjects.Add(h);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user