mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 23:12:56 +08:00
Prevent ApplyTransformsAt from propogating to SliderBall children
This commit is contained in:
parent
b131ca12f1
commit
5cc670cd19
@ -132,6 +132,12 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Pieces
|
|||||||
base.ClearTransformsAfter(time, false, targetMember);
|
base.ClearTransformsAfter(time, false, targetMember);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override void ApplyTransformsAt(double time, bool propagateChildren = false)
|
||||||
|
{
|
||||||
|
// For the same reasons as above w.r.t rewinding, we shouldn't propagate to children here either.
|
||||||
|
base.ApplyTransformsAt(time, false);
|
||||||
|
}
|
||||||
|
|
||||||
private bool tracking;
|
private bool tracking;
|
||||||
|
|
||||||
public bool Tracking
|
public bool Tracking
|
||||||
|
Loading…
Reference in New Issue
Block a user