mirror of
https://github.com/ppy/osu.git
synced 2025-01-06 09:42:55 +08:00
Fix taiko mascot size not matching stable
This commit is contained in:
parent
48f8d9c916
commit
c21805589e
@ -27,7 +27,8 @@ namespace osu.Game.Rulesets.Taiko.UI
|
|||||||
InternalChild = textureAnimation = createTextureAnimation(state).With(animation =>
|
InternalChild = textureAnimation = createTextureAnimation(state).With(animation =>
|
||||||
{
|
{
|
||||||
animation.Origin = animation.Anchor = Anchor.BottomLeft;
|
animation.Origin = animation.Anchor = Anchor.BottomLeft;
|
||||||
animation.Scale = new Vector2(0.51f); // close enough to stable
|
// matches stable (https://github.com/peppy/osu-stable-reference/blob/054d0380c19aa5972be176d9d242ceb0e1630ae6/osu!/GameModes/Play/Rulesets/Taiko/TaikoMascot.cs#L34)
|
||||||
|
animation.Scale = new Vector2(0.6f);
|
||||||
});
|
});
|
||||||
|
|
||||||
RelativeSizeAxes = Axes.Both;
|
RelativeSizeAxes = Axes.Both;
|
||||||
|
Loading…
Reference in New Issue
Block a user