mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
Fix DHOs being freed when not expected
This commit is contained in:
@ -52,14 +52,14 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
|
||||
});
|
||||
}
|
||||
|
||||
protected override void FreeAfterUse()
|
||||
public override void Free()
|
||||
{
|
||||
IndexInCurrentComboBindable.UnbindFrom(HitObject.IndexInCurrentComboBindable);
|
||||
PositionBindable.UnbindFrom(HitObject.PositionBindable);
|
||||
StackHeightBindable.UnbindFrom(HitObject.StackHeightBindable);
|
||||
ScaleBindable.UnbindFrom(HitObject.ScaleBindable);
|
||||
|
||||
base.FreeAfterUse();
|
||||
base.Free();
|
||||
}
|
||||
|
||||
public override void Apply(HitObject hitObject)
|
||||
|
Reference in New Issue
Block a user