mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Separate asymmetric CatchHitObject.X to EffectiveX and OriginalX
This commit is contained in:
@ -38,14 +38,14 @@ namespace osu.Game.Rulesets.Catch.Objects.Drawables
|
||||
{
|
||||
base.OnApply();
|
||||
|
||||
XBindable.BindTo(HitObject.XBindable);
|
||||
XBindable.BindTo(HitObject.EffectiveXBindable);
|
||||
}
|
||||
|
||||
protected override void OnFree()
|
||||
{
|
||||
base.OnFree();
|
||||
|
||||
XBindable.UnbindFrom(HitObject.XBindable);
|
||||
XBindable.UnbindFrom(HitObject.EffectiveXBindable);
|
||||
}
|
||||
|
||||
public Func<CatchHitObject, bool> CheckPosition;
|
||||
|
Reference in New Issue
Block a user