Fix taiko mascot size not matching stable

This commit is contained in:
Dean Herbert 2024-03-29 22:40:04 +08:00
parent 48f8d9c916
commit c21805589e
No known key found for this signature in database
1 changed files with 2 additions and 1 deletions

View File

@ -27,7 +27,8 @@ public TaikoMascotAnimation(TaikoMascotAnimationState state)
InternalChild = textureAnimation = createTextureAnimation(state).With(animation =>
{
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;