Add comments to SequentialSpeedChangeVisualiser

This commit is contained in:
smoogipoo
2018-04-20 14:16:30 +09:00
parent 1bab601cbc
commit 48b421b4b4
2 changed files with 28 additions and 5 deletions

View File

@ -80,10 +80,12 @@ namespace osu.Game.Rulesets.UI.Scrolling.Visualisers
}
/// <summary>
/// Computes the position of a <see cref="DrawableHitObject"/> at a point in time. <br />
/// Computes the position of a <see cref="DrawableHitObject"/> at a point in time.
/// <para>
/// At t &lt; startTime, position &gt; 0. <br />
/// At t = startTime, position = 0. <br />
/// At t &gt; startTime, position &lt; 0.
/// </para>
/// </summary>
/// <param name="obj">The <see cref="DrawableHitObject"/>.</param>
/// <param name="time">The time to find the position of <paramref name="obj"/> at.</param>