Add flag to toggle follow circle tracking for slider heads

This commit is contained in:
smoogipoo
2021-02-03 21:25:05 +09:00
parent 19cbcd556c
commit 623b47f9af
2 changed files with 14 additions and 4 deletions

View File

@ -5,5 +5,9 @@ namespace osu.Game.Rulesets.Osu.Objects
{
public class SliderHeadCircle : HitCircle
{
/// <summary>
/// Makes the head circle track the follow circle when the start time is reached.
/// </summary>
public bool TrackFollowCircle = true;
}
}