mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 00:27:25 +08:00
Add xmldoc for not obvious const
This commit is contained in:
parent
9f64e09625
commit
596ee150c6
@ -20,12 +20,15 @@ namespace osu.Game.Screens.Play.HitErrorDisplay
|
|||||||
{
|
{
|
||||||
public class BarHitErrorDisplay : HitErrorDisplay
|
public class BarHitErrorDisplay : HitErrorDisplay
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// The amount of <see cref="JudgementResult"/> which will be stored to calculate arrow position.
|
||||||
|
/// </summary>
|
||||||
private const int stored_judgements_amount = 5;
|
private const int stored_judgements_amount = 5;
|
||||||
private const int bar_width = 3;
|
private const int judgement_fade_duration = 10000;
|
||||||
|
private const int arrow_move_duration = 500;
|
||||||
private const int judgement_line_width = 8;
|
private const int judgement_line_width = 8;
|
||||||
private const int bar_height = 200;
|
private const int bar_height = 200;
|
||||||
private const int arrow_move_duration = 500;
|
private const int bar_width = 3;
|
||||||
private const int judgement_life_time = 10000;
|
|
||||||
private const int spacing = 3;
|
private const int spacing = 3;
|
||||||
|
|
||||||
private readonly SpriteIcon arrow;
|
private readonly SpriteIcon arrow;
|
||||||
@ -127,7 +130,7 @@ namespace osu.Game.Screens.Play.HitErrorDisplay
|
|||||||
|
|
||||||
judgementsContainer.Add(judgementLine);
|
judgementsContainer.Add(judgementLine);
|
||||||
|
|
||||||
judgementLine.FadeOut(judgement_life_time, Easing.OutQuint).Expire();
|
judgementLine.FadeOut(judgement_fade_duration, Easing.OutQuint).Expire();
|
||||||
|
|
||||||
arrow.MoveToY(calculateArrowPosition(newJudgement), arrow_move_duration, Easing.OutQuint);
|
arrow.MoveToY(calculateArrowPosition(newJudgement), arrow_move_duration, Easing.OutQuint);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user