mirror of
https://github.com/ppy/osu
synced 2025-01-13 17:41:09 +00:00
Rename Mod
This commit is contained in:
parent
2dfc42dd53
commit
538d980072
@ -16,13 +16,13 @@ using osu.Game.Scoring;
|
||||
|
||||
namespace osu.Game.Rulesets.Osu.Mods
|
||||
{
|
||||
public class OsuModGhost : Mod, IUpdatableByPlayfield, IApplicableToScoreProcessor
|
||||
public class OsuModNoScope : Mod, IUpdatableByPlayfield, IApplicableToScoreProcessor
|
||||
{
|
||||
public const float CURSOR_ALPHA_TRANSITION_DURATION = 100;
|
||||
public override string Name => "Ghost";
|
||||
public override string Acronym => "GS";
|
||||
public override string Name => "No Scope";
|
||||
public override string Acronym => "NS";
|
||||
public override ModType Type => ModType.Fun;
|
||||
public override IconUsage? Icon => FontAwesome.Solid.Ghost;
|
||||
public override IconUsage? Icon => FontAwesome.Solid.EyeSlash;
|
||||
public override string Description => "Where's the cursor?";
|
||||
public override double ScoreMultiplier => 1;
|
||||
private readonly BindableFloat cursorAlpha = new BindableFloat();
|
@ -192,7 +192,7 @@ namespace osu.Game.Rulesets.Osu
|
||||
new OsuModBarrelRoll(),
|
||||
new OsuModApproachDifferent(),
|
||||
new OsuModMuted(),
|
||||
new OsuModGhost(),
|
||||
new OsuModNoScope(),
|
||||
};
|
||||
|
||||
case ModType.System:
|
||||
|
Loading…
Reference in New Issue
Block a user