mirror of
https://github.com/ppy/osu.git
synced 2025-03-05 12:32:58 +08:00
Don't override hitobjects anchor
This commit is contained in:
parent
937689ee6b
commit
ebcde63caa
@ -53,25 +53,6 @@ namespace osu.Game.Rulesets.Osu.Mods
|
|||||||
(drawableRuleset.Playfield as OsuPlayfield)?.FollowPoints.Hide();
|
(drawableRuleset.Playfield as OsuPlayfield)?.FollowPoints.Hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void ApplyToDrawableHitObject(DrawableHitObject dho)
|
|
||||||
{
|
|
||||||
base.ApplyToDrawableHitObject(dho);
|
|
||||||
|
|
||||||
switch (dho)
|
|
||||||
{
|
|
||||||
case DrawableSliderHead:
|
|
||||||
case DrawableSliderTail:
|
|
||||||
case DrawableSliderTick:
|
|
||||||
case DrawableSliderRepeat:
|
|
||||||
return;
|
|
||||||
|
|
||||||
case DrawableHitCircle:
|
|
||||||
case DrawableSlider:
|
|
||||||
dho.Anchor = Anchor.Centre;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void applyTransform(DrawableHitObject drawable, ArmedState state)
|
private void applyTransform(DrawableHitObject drawable, ArmedState state)
|
||||||
{
|
{
|
||||||
switch (drawable)
|
switch (drawable)
|
||||||
@ -160,7 +141,7 @@ namespace osu.Game.Rulesets.Osu.Mods
|
|||||||
|
|
||||||
private static Vector2 positionAtDepth(float mappedDepth, Vector2 positionAtZeroDepth)
|
private static Vector2 positionAtDepth(float mappedDepth, Vector2 positionAtZeroDepth)
|
||||||
{
|
{
|
||||||
return (positionAtZeroDepth - camera_position.Xy) * mappedDepth;
|
return (positionAtZeroDepth - camera_position.Xy) * mappedDepth + camera_position.Xy;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user