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

Adjust comment

This commit is contained in:
smoogipoo 2021-02-10 18:43:14 +09:00
parent 18a29dcb96
commit 9519b7f7c1

View File

@ -54,9 +54,9 @@ namespace osu.Game.Rulesets.Osu.Skinning.Default
if (drawableSlider.HitObject == null)
return;
// When not tracking the follow circle, unbind from the config and forcefully disable snaking out - it looks better that way.
if (!drawableSlider.HeadCircle.TrackFollowCircle)
{
// When not tracking the follow circle, force the path to not snake out as it looks better that way.
SnakingOut.UnbindFrom(configSnakingOut);
SnakingOut.Value = false;
}