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

Add missing ;

This commit is contained in:
miterosan 2018-08-05 15:13:04 +02:00
parent f02d1f9013
commit 876d410fa1

View File

@ -47,7 +47,7 @@ namespace osu.Game.Rulesets.Osu.Mods
{ {
drawable drawable
.MoveTo(originalPosition, hitObject.TimeFadeIn + pre_time_offset, Easing.InOutSine); .MoveTo(originalPosition, hitObject.TimeFadeIn + pre_time_offset, Easing.InOutSine);
.MoveToOffset(new Vector2((float)Math.Cos(theta), (float)Math.Sin(theta)) * appearDistance) .MoveToOffset(new Vector2((float)Math.Cos(theta), (float)Math.Sin(theta)) * appearDistance);
} }
// That way slider ticks come all from the same direction. // That way slider ticks come all from the same direction.