Skip to content

Commit

Permalink
Merge pull request ppy#27758 from peppy/fix-mascot-size
Browse files Browse the repository at this point in the history
Fix taiko mascot size not matching stable
  • Loading branch information
frenzibyte authored Mar 29, 2024
2 parents 48f8d9c + 51f79c3 commit 93f1578
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion osu.Game.Rulesets.Taiko/UI/TaikoMascotAnimation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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/e53980dd76857ee899f66ce519ba1597e7874f28/osu!/GameModes/Play/Rulesets/Taiko/TaikoMascot.cs#L34)
animation.Scale = new Vector2(0.6f);
});

RelativeSizeAxes = Axes.Both;
Expand Down

0 comments on commit 93f1578

Please sign in to comment.