1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 00:02:54 +08:00

Revert "Fix follow point lifetime not being updated correctly"

This reverts commit 1ef2b81041.
This commit is contained in:
smoogipoo 2019-11-05 23:03:05 +09:00
parent 0a2af2b0fe
commit aff275ea21

View File

@ -121,15 +121,13 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Connections
using (fp.BeginAbsoluteSequence(fadeInTime))
{
// See: Expire calls are separated due to https://github.com/ppy/osu-framework/issues/2941
fp.FadeIn(osuEnd.TimeFadeIn).Expire(true);
fp.ScaleTo(osuEnd.Scale, osuEnd.TimeFadeIn, Easing.Out)
.MoveTo(pointEndPosition, osuEnd.TimeFadeIn, Easing.Out)
.Delay(fadeOutTime - fadeInTime).FadeOut(osuEnd.TimeFadeIn)
.Expire();
fp.FadeIn(osuEnd.TimeFadeIn);
fp.ScaleTo(osuEnd.Scale, osuEnd.TimeFadeIn, Easing.Out);
fp.MoveTo(pointEndPosition, osuEnd.TimeFadeIn, Easing.Out);
fp.Delay(fadeOutTime - fadeInTime).FadeOut(osuEnd.TimeFadeIn);
}
fp.Expire(true);
}
}
}