mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 07:06:35 +09:00
start at 1
This commit is contained in:
@ -139,9 +139,8 @@ namespace osu.Game.Rulesets.Osu.Objects
|
|||||||
var repeatPointDistance = Math.Min(Distance, length);
|
var repeatPointDistance = Math.Min(Distance, length);
|
||||||
var repeatDuration = length / Velocity;
|
var repeatDuration = length / Velocity;
|
||||||
|
|
||||||
for (var repeat = 0; repeat < RepeatCount; repeat++)
|
for (var repeat = 1; repeat < RepeatCount; repeat++)
|
||||||
{
|
{
|
||||||
if (repeat > 0)
|
|
||||||
for (var d = repeatPointDistance; d <= length; d += repeatPointDistance)
|
for (var d = repeatPointDistance; d <= length; d += repeatPointDistance)
|
||||||
{
|
{
|
||||||
var repeatStartTime = StartTime + repeat * repeatDuration;
|
var repeatStartTime = StartTime + repeat * repeatDuration;
|
||||||
|
Reference in New Issue
Block a user