1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-04 14:25:42 +08:00

Assign position to spinner ticks for correct positional playback

This commit is contained in:
Salman Ahmed
2022-01-15 14:24:52 +03:00
Unverified
parent 83bbe70374
commit 3ab13dd78c
+2 -2
View File
@@ -65,8 +65,8 @@ namespace osu.Game.Rulesets.Osu.Objects
double startTime = StartTime + (float)(i + 1) / totalSpins * Duration;
AddNested(i < SpinsRequired
? new SpinnerTick { StartTime = startTime }
: new SpinnerBonusTick { StartTime = startTime });
? new SpinnerTick { StartTime = startTime, Position = Position }
: new SpinnerBonusTick { StartTime = startTime, Position = Position });
}
}