mirror of
https://github.com/ppy/osu.git
synced 2025-02-10 23:23:05 +08: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
|
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 const float CURSOR_ALPHA_TRANSITION_DURATION = 100;
|
||||||
public override string Name => "Ghost";
|
public override string Name => "No Scope";
|
||||||
public override string Acronym => "GS";
|
public override string Acronym => "NS";
|
||||||
public override ModType Type => ModType.Fun;
|
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 string Description => "Where's the cursor?";
|
||||||
public override double ScoreMultiplier => 1;
|
public override double ScoreMultiplier => 1;
|
||||||
private readonly BindableFloat cursorAlpha = new BindableFloat();
|
private readonly BindableFloat cursorAlpha = new BindableFloat();
|
@ -192,7 +192,7 @@ namespace osu.Game.Rulesets.Osu
|
|||||||
new OsuModBarrelRoll(),
|
new OsuModBarrelRoll(),
|
||||||
new OsuModApproachDifferent(),
|
new OsuModApproachDifferent(),
|
||||||
new OsuModMuted(),
|
new OsuModMuted(),
|
||||||
new OsuModGhost(),
|
new OsuModNoScope(),
|
||||||
};
|
};
|
||||||
|
|
||||||
case ModType.System:
|
case ModType.System:
|
||||||
|
Loading…
Reference in New Issue
Block a user