mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Add floating fruits mod
This commit is contained in:
23
osu.Game.Rulesets.Catch/Mods/CatchModFloatingFruits.cs
Normal file
23
osu.Game.Rulesets.Catch/Mods/CatchModFloatingFruits.cs
Normal file
@ -0,0 +1,23 @@
|
||||
using osu.Framework.Graphics;
|
||||
using osu.Framework.Graphics.Sprites;
|
||||
using osu.Game.Rulesets.Mods;
|
||||
using osu.Game.Screens.Play;
|
||||
|
||||
namespace osu.Game.Rulesets.Catch.Mods
|
||||
{
|
||||
public class CatchModFloatingFruits : Mod, IApplicableToPlayer
|
||||
{
|
||||
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 ApplyToPlayer(Player player)
|
||||
{
|
||||
player.DrawableRuleset.Anchor = Anchor.Centre;
|
||||
player.DrawableRuleset.Origin = Anchor.Centre;
|
||||
player.DrawableRuleset.Scale = new osuTK.Vector2(1, -1);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user