mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 06:12:56 +08:00
Swtich order of the moveto and the movetooffset.
This commit is contained in:
parent
876d410fa1
commit
d32ffc1ebc
@ -46,8 +46,9 @@ namespace osu.Game.Rulesets.Osu.Mods
|
||||
using (drawable.BeginAbsoluteSequence(hitObject.StartTime - hitObject.TimeFadeIn - pre_time_offset, true))
|
||||
{
|
||||
drawable
|
||||
.MoveToOffset(new Vector2((float)Math.Cos(theta), (float)Math.Sin(theta)) * appearDistance)
|
||||
.MoveTo(originalPosition, hitObject.TimeFadeIn + pre_time_offset, Easing.InOutSine);
|
||||
.MoveToOffset(new Vector2((float)Math.Cos(theta), (float)Math.Sin(theta)) * appearDistance);
|
||||
|
||||
}
|
||||
|
||||
// That way slider ticks come all from the same direction.
|
||||
|
Loading…
Reference in New Issue
Block a user