mirror of
https://github.com/ppy/osu.git
synced 2025-02-16 16:23:16 +08:00
fix: correct key counter position in Triangles and Legacy skins
This commit is contained in:
parent
fcdaf72915
commit
9d688733ac
@ -385,7 +385,7 @@ namespace osu.Game.Skinning
|
|||||||
{
|
{
|
||||||
keyCounter.Anchor = Anchor.BottomRight;
|
keyCounter.Anchor = Anchor.BottomRight;
|
||||||
keyCounter.Origin = Anchor.BottomRight;
|
keyCounter.Origin = Anchor.BottomRight;
|
||||||
keyCounter.Position = new Vector2(10, -10 - hitError.Width);
|
keyCounter.Position = new Vector2(-10, -10 - hitError.Width);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -148,7 +148,7 @@ namespace osu.Game.Skinning
|
|||||||
{
|
{
|
||||||
keyCounter.Anchor = Anchor.BottomRight;
|
keyCounter.Anchor = Anchor.BottomRight;
|
||||||
keyCounter.Origin = Anchor.BottomRight;
|
keyCounter.Origin = Anchor.BottomRight;
|
||||||
keyCounter.Position = new Vector2(10, -57 - 10);
|
keyCounter.Position = new Vector2(-10, -60 - 10);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user