1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 10:12:54 +08:00

fix repeat points not scaling properly

This commit is contained in:
Aergwyn 2017-12-29 20:03:43 +01:00
parent 936a3f52c8
commit 52dd5ddba6

View File

@ -27,8 +27,6 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
AutoSizeAxes = Axes.Both;
Blending = BlendingMode.Additive;
Origin = Anchor.Centre;
Scale = new Vector2(0.5f);
Children = new Drawable[]
{
new SpriteIcon
@ -36,7 +34,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
Icon = FontAwesome.fa_eercast,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Size = new Vector2(32),
Size = new Vector2(32 * repeatPoint.Scale),
}
};
}