Fix slider cursor positions not being taken into account

This commit is contained in:
smoogipoo
2017-11-17 20:28:41 +09:00
parent c7ffe6fe58
commit c221cfd30c
2 changed files with 41 additions and 1 deletions

View File

@ -45,6 +45,12 @@ namespace osu.Game.Rulesets.Osu.Objects
set { Curve.Distance = value; }
}
/// <summary>
/// The position of the cursor at the point of completion of this <see cref="OsuHitObject"/>.
/// This is set and used by difficulty calculation.
/// </summary>
internal Vector2? CursorPosition;
public List<SampleInfoList> RepeatSamples { get; set; } = new List<SampleInfoList>();
public int RepeatCount { get; set; } = 1;