mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 07:22:54 +08:00
Disable masking optimisations for scrolling hit objects
Lifetime is very tightly controlled here, so all should be okay.
This commit is contained in:
parent
05ac23f99a
commit
d83a2d4dc6
@ -31,6 +31,7 @@ namespace osu.Game.Rulesets.Objects.Drawables
|
||||
}
|
||||
|
||||
public override bool RemoveWhenNotAlive => false;
|
||||
protected override bool RequiresChildrenUpdate => true;
|
||||
|
||||
protected DrawableScrollingHitObject(TObject hitObject)
|
||||
: base(hitObject)
|
||||
|
@ -29,6 +29,7 @@ namespace osu.Game.Rulesets.Timing
|
||||
internal Axes ScrollingAxes;
|
||||
|
||||
public override bool RemoveWhenNotAlive => false;
|
||||
protected override bool RequiresChildrenUpdate => true;
|
||||
|
||||
/// <summary>
|
||||
/// The control point that defines the speed adjustments for this container. This is set by the <see cref="SpeedAdjustmentContainer"/>.
|
||||
|
@ -38,6 +38,7 @@ namespace osu.Game.Rulesets.Timing
|
||||
}
|
||||
|
||||
public override bool RemoveWhenNotAlive => false;
|
||||
protected override bool RequiresChildrenUpdate => true;
|
||||
|
||||
/// <summary>
|
||||
/// The <see cref="MultiplierControlPoint"/> that defines the speed adjustments.
|
||||
|
Loading…
Reference in New Issue
Block a user