mirror of
https://github.com/ppy/osu
synced 2025-02-07 13:51:59 +00:00
Revert "Fix follow point lifetime not being updated correctly"
This reverts commit 1ef2b81041
.
This commit is contained in:
parent
0a2af2b0fe
commit
aff275ea21
@ -121,15 +121,13 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Connections
|
|||||||
|
|
||||||
using (fp.BeginAbsoluteSequence(fadeInTime))
|
using (fp.BeginAbsoluteSequence(fadeInTime))
|
||||||
{
|
{
|
||||||
// See: Expire calls are separated due to https://github.com/ppy/osu-framework/issues/2941
|
fp.FadeIn(osuEnd.TimeFadeIn);
|
||||||
|
fp.ScaleTo(osuEnd.Scale, osuEnd.TimeFadeIn, Easing.Out);
|
||||||
fp.FadeIn(osuEnd.TimeFadeIn).Expire(true);
|
fp.MoveTo(pointEndPosition, osuEnd.TimeFadeIn, Easing.Out);
|
||||||
|
fp.Delay(fadeOutTime - fadeInTime).FadeOut(osuEnd.TimeFadeIn);
|
||||||
fp.ScaleTo(osuEnd.Scale, osuEnd.TimeFadeIn, Easing.Out)
|
|
||||||
.MoveTo(pointEndPosition, osuEnd.TimeFadeIn, Easing.Out)
|
|
||||||
.Delay(fadeOutTime - fadeInTime).FadeOut(osuEnd.TimeFadeIn)
|
|
||||||
.Expire();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fp.Expire(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user