Skip to content

Commit

Permalink
Argon: Changed judgement text
Browse files Browse the repository at this point in the history
  • Loading branch information
xdi1 committed Oct 26, 2023
1 parent f166024 commit ad16685
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions osu.Game.Rulesets.Mania/Skinning/Argon/ArgonJudgementPiece.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public ArgonJudgementPiece(HitResult result)
AutoSizeAxes = Axes.Both;

Origin = Anchor.Centre;
Y = 160;
Y = 140;
}

[BackgroundDependencyLoader]
Expand All @@ -52,7 +52,7 @@ protected override SpriteText CreateJudgementText() =>
Origin = Anchor.Centre,
Blending = BlendingParameters.Additive,
Spacing = new Vector2(10, 0),
Font = OsuFont.Default.With(size: 28, weight: FontWeight.Regular),
Font = OsuFont.Default.With(size: 34, weight: FontWeight.Regular),
};

/// <summary>
Expand Down Expand Up @@ -93,14 +93,14 @@ public virtual void PlayAnimation()

private partial class RingExplosion : CompositeDrawable
{
private readonly float travel = 52;
private readonly float travel = 0;

public RingExplosion(HitResult result)
{
const float thickness = 4;
const float thickness = 0;

const float small_size = 9;
const float large_size = 14;
const float small_size = 0;
const float large_size = 0;

Anchor = Anchor.Centre;
Origin = Anchor.Centre;
Expand Down
10 changes: 5 additions & 5 deletions osu.Game/Rulesets/Scoring/HitResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,22 +35,22 @@ public enum HitResult
[Order(5)]
Miss,

[Description(@"Meh")]
[Description(@"MAX 10%")]
[EnumMember(Value = "meh")]
[Order(4)]
Meh,

[Description(@"OK")]
[Description(@"MAX 30%")]
[EnumMember(Value = "ok")]
[Order(3)]
Ok,

[Description(@"Good")]
[Description(@"MAX 80%")]
[EnumMember(Value = "good")]
[Order(2)]
Good,

[Description(@"Great")]
[Description(@"MAX 90%")]
[EnumMember(Value = "great")]
[Order(1)]
Great,
Expand All @@ -62,7 +62,7 @@ public enum HitResult
/// By default, this does not give any bonus accuracy or score.
/// To have it affect scoring, consider adding a nested bonus object.
/// </remarks>
[Description(@"Perfect")]
[Description(@"MAX 100%")]
[EnumMember(Value = "perfect")]
[Order(0)]
Perfect,
Expand Down

0 comments on commit ad16685

Please sign in to comment.