-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ppy#12461 from LiterallyFabian/reversed-fruits
Add "Floating Fruits" mod
- Loading branch information
Showing
2 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. | ||
// See the LICENCE file in the repository root for full licence text. | ||
|
||
using osu.Framework.Graphics; | ||
using osu.Framework.Graphics.Sprites; | ||
using osu.Game.Rulesets.Catch.Objects; | ||
using osu.Game.Rulesets.Mods; | ||
using osu.Game.Rulesets.UI; | ||
using osuTK; | ||
|
||
namespace osu.Game.Rulesets.Catch.Mods | ||
{ | ||
public class CatchModFloatingFruits : Mod, IApplicableToDrawableRuleset<CatchHitObject> | ||
{ | ||
public override string Name => "Floating Fruits"; | ||
public override string Acronym => "FF"; | ||
public override string Description => "The fruits are... floating?"; | ||
public override double ScoreMultiplier => 1; | ||
public override IconUsage? Icon => FontAwesome.Solid.Cloud; | ||
|
||
public void ApplyToDrawableRuleset(DrawableRuleset<CatchHitObject> drawableRuleset) | ||
{ | ||
drawableRuleset.Anchor = Anchor.Centre; | ||
drawableRuleset.Origin = Anchor.Centre; | ||
|
||
drawableRuleset.Scale = new Vector2(1, -1); | ||
} | ||
} | ||
} |