1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-16 08:42:55 +08:00

Add TODO.

This commit is contained in:
Dean Herbert 2017-03-23 10:56:30 +09:00 committed by GitHub
parent 877ae52cff
commit bf94587ca7

View File

@ -62,6 +62,7 @@ namespace osu.Game.Modes.Taiko.Objects
Velocity = timing.SliderVelocityAt(StartTime) * difficulty.SliderMultiplier / 1000;
TickTimeDistance = timing.BeatLengthAt(StartTime);
//TODO: move this to legacy conversion code to allow for direct division without special case.
if (difficulty.SliderTickRate == 3)
TickTimeDistance /= 3;
else
@ -100,4 +101,4 @@ namespace osu.Game.Modes.Taiko.Objects
return ret;
}
}
}
}