1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:07:25 +08:00

Move spm text out of scaled parts.

This commit is contained in:
Huo Yaoyuan 2017-10-05 19:55:20 +08:00
parent 0da66cfc7c
commit 24187cc53a

View File

@ -99,24 +99,6 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
Origin = Anchor.Centre,
},
circleContainer.CreateProxy(),
spmText = new OsuSpriteText
{
Anchor = Anchor.Centre,
Origin = Anchor.BottomCentre,
Text = @"0",
Font = @"Venera",
TextSize = 24,
Y = 120
},
new OsuSpriteText
{
Anchor = Anchor.Centre,
Origin = Anchor.TopCentre,
Text = @"SPINS PER MINUTE",
Font = @"Venera",
TextSize = 12,
Y = 125
},
ticks = new SpinnerTicks
{
Anchor = Anchor.Centre,
@ -124,6 +106,24 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
},
}
},
spmText = new OsuSpriteText
{
Anchor = Anchor.Centre,
Origin = Anchor.BottomCentre,
Text = @"0",
Font = @"Venera",
TextSize = 24,
Y = 120
},
new OsuSpriteText
{
Anchor = Anchor.Centre,
Origin = Anchor.TopCentre,
Text = @"SPINS PER MINUTE",
Font = @"Venera",
TextSize = 12,
Y = 125
},
};
}