1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 05:27:23 +08:00
osu-lazer/osu.Game.Rulesets.Catch/Mods/CatchModFloatingFruits.cs

27 lines
928 B
C#
Raw Normal View History

2021-04-17 22:01:23 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using osu.Game.Rulesets.Catch.Objects;
2021-04-17 22:01:23 +08:00
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.UI;
2021-04-17 22:01:23 +08:00
using osu.Game.Screens.Play;
namespace osu.Game.Rulesets.Catch.Mods
{
public class CatchModFloatingFruits : Mod, IApplicableToDrawableRuleset<CatchHitObject>
2021-04-17 22:01:23 +08:00
{
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.Brands.Fly;
public void ApplyToDrawableRuleset(DrawableRuleset<CatchHitObject> drawableRuleset)
2021-04-17 22:01:23 +08:00
{
drawableRuleset.Anchor = Anchor.Centre;
drawableRuleset.Origin = Anchor.Centre;
drawableRuleset.Scale = new osuTK.Vector2(1, -1);
2021-04-17 22:01:23 +08:00
}
2021-04-17 22:01:23 +08:00
}
}