mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 12:33:01 +08:00
Merge pull request #26522 from bdach/slider-tick-display
Show "slider end" statistic next to slider ticks on results screen (and use correct colour)
This commit is contained in:
commit
4c6c849d26
@ -95,6 +95,7 @@ namespace osu.Game.Graphics
|
|||||||
|
|
||||||
case HitResult.SmallTickHit:
|
case HitResult.SmallTickHit:
|
||||||
case HitResult.LargeTickHit:
|
case HitResult.LargeTickHit:
|
||||||
|
case HitResult.SliderTailHit:
|
||||||
case HitResult.Great:
|
case HitResult.Great:
|
||||||
return Blue;
|
return Blue;
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ namespace osu.Game.Rulesets.Scoring
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[Description(@"")]
|
[Description(@"")]
|
||||||
[EnumMember(Value = "none")]
|
[EnumMember(Value = "none")]
|
||||||
[Order(14)]
|
[Order(15)]
|
||||||
None,
|
None,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -71,7 +71,7 @@ namespace osu.Game.Rulesets.Scoring
|
|||||||
/// Indicates small tick miss.
|
/// Indicates small tick miss.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[EnumMember(Value = "small_tick_miss")]
|
[EnumMember(Value = "small_tick_miss")]
|
||||||
[Order(11)]
|
[Order(12)]
|
||||||
SmallTickMiss,
|
SmallTickMiss,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -87,7 +87,7 @@ namespace osu.Game.Rulesets.Scoring
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[EnumMember(Value = "large_tick_miss")]
|
[EnumMember(Value = "large_tick_miss")]
|
||||||
[Description("-")]
|
[Description("-")]
|
||||||
[Order(10)]
|
[Order(11)]
|
||||||
LargeTickMiss,
|
LargeTickMiss,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -103,7 +103,7 @@ namespace osu.Game.Rulesets.Scoring
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[Description("S Bonus")]
|
[Description("S Bonus")]
|
||||||
[EnumMember(Value = "small_bonus")]
|
[EnumMember(Value = "small_bonus")]
|
||||||
[Order(9)]
|
[Order(10)]
|
||||||
SmallBonus,
|
SmallBonus,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -111,7 +111,7 @@ namespace osu.Game.Rulesets.Scoring
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[Description("L Bonus")]
|
[Description("L Bonus")]
|
||||||
[EnumMember(Value = "large_bonus")]
|
[EnumMember(Value = "large_bonus")]
|
||||||
[Order(8)]
|
[Order(9)]
|
||||||
LargeBonus,
|
LargeBonus,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -119,14 +119,14 @@ namespace osu.Game.Rulesets.Scoring
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[EnumMember(Value = "ignore_miss")]
|
[EnumMember(Value = "ignore_miss")]
|
||||||
[Description("-")]
|
[Description("-")]
|
||||||
[Order(13)]
|
[Order(14)]
|
||||||
IgnoreMiss,
|
IgnoreMiss,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Indicates a hit that should be ignored for scoring purposes.
|
/// Indicates a hit that should be ignored for scoring purposes.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[EnumMember(Value = "ignore_hit")]
|
[EnumMember(Value = "ignore_hit")]
|
||||||
[Order(12)]
|
[Order(13)]
|
||||||
IgnoreHit,
|
IgnoreHit,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -136,14 +136,14 @@ namespace osu.Game.Rulesets.Scoring
|
|||||||
/// May be paired with <see cref="IgnoreHit"/>.
|
/// May be paired with <see cref="IgnoreHit"/>.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
[EnumMember(Value = "combo_break")]
|
[EnumMember(Value = "combo_break")]
|
||||||
[Order(15)]
|
[Order(16)]
|
||||||
ComboBreak,
|
ComboBreak,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A special judgement similar to <see cref="LargeTickHit"/> that's used to increase the valuation of the final tick of a slider.
|
/// A special judgement similar to <see cref="LargeTickHit"/> that's used to increase the valuation of the final tick of a slider.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[EnumMember(Value = "slider_tail_hit")]
|
[EnumMember(Value = "slider_tail_hit")]
|
||||||
[Order(16)]
|
[Order(8)]
|
||||||
SliderTailHit,
|
SliderTailHit,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
Loading…
Reference in New Issue
Block a user