1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 03:27:24 +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,6 +99,13 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
Origin = Anchor.Centre, Origin = Anchor.Centre,
}, },
circleContainer.CreateProxy(), circleContainer.CreateProxy(),
ticks = new SpinnerTicks
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
},
}
},
spmText = new OsuSpriteText spmText = new OsuSpriteText
{ {
Anchor = Anchor.Centre, Anchor = Anchor.Centre,
@ -117,13 +124,6 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
TextSize = 12, TextSize = 12,
Y = 125 Y = 125
}, },
ticks = new SpinnerTicks
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
},
}
},
}; };
} }