1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 15:27:24 +08:00

Re-added accidentally omitted xmldoc

This commit is contained in:
OpenSauce04 2024-02-02 13:21:17 +00:00 committed by OpenSauce
parent dd41384e04
commit e8071f1595

View File

@ -41,6 +41,13 @@ namespace osu.Game.Rulesets.Taiko.Objects.Drawables
private readonly Bindable<HitType> type = new Bindable<HitType>();
/// <summary>
/// Whether the location of the hit should be snapped to the hit target before animating.
/// </summary>
/// <remarks>
/// This is how osu-stable worked, but notably is not how TnT works.
/// Not snapping results in less visual feedback on hit accuracy.
/// </remarks>
private readonly Bindable<bool> snapJudgementLocation = new Bindable<bool>();
public DrawableHit()