mirror of
https://github.com/ppy/osu.git
synced 2025-01-19 11:32:54 +08:00
fix slider follow circle instantly disappearing on slider ends
This commit is contained in:
parent
d72bbf037d
commit
d94c313947
@ -108,6 +108,12 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Pieces
|
|||||||
base.ClearTransforms(false, targetMember);
|
base.ClearTransforms(false, targetMember);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override void ClearTransformsAfter(double time, bool propagateChildren = false, string targetMember = null)
|
||||||
|
{
|
||||||
|
// Same reasoning as in ClearTransforms.
|
||||||
|
base.ClearTransformsAfter(time, false, targetMember);
|
||||||
|
}
|
||||||
|
|
||||||
private bool tracking;
|
private bool tracking;
|
||||||
public bool Tracking
|
public bool Tracking
|
||||||
{
|
{
|
||||||
@ -141,4 +147,4 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Pieces
|
|||||||
Position = slider.Curve.PositionAt(progress);
|
Position = slider.Curve.PositionAt(progress);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user