mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 21:52:55 +08:00
Reorder hit results so that SliderTailHit
is next to SmallTickHit
This addresses https://github.com/ppy/osu/discussions/26507.
This commit is contained in:
parent
eecd868d66
commit
1cd7656f33
@ -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