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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
1.2 KiB
C#
Raw Normal View History

2021-04-24 13:33:56 +08:00
// 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;
2021-04-17 22:01:23 +08:00
using osu.Framework.Graphics.Sprites;
2022-08-11 04:09:11 +08:00
using osu.Framework.Localisation;
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-24 13:33:56 +08:00
using osuTK;
2021-04-17 22:01:23 +08:00
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";
2022-08-11 04:09:11 +08:00
public override LocalisableString Description => "The fruits are... floating?";
2021-04-17 22:01:23 +08:00
public override double ScoreMultiplier => 1;
2021-04-18 05:55:39 +08:00
public override IconUsage? Icon => FontAwesome.Solid.Cloud;
2021-04-17 22:01:23 +08:00
public void ApplyToDrawableRuleset(DrawableRuleset<CatchHitObject> drawableRuleset)
2021-04-17 22:01:23 +08:00
{
drawableRuleset.PlayfieldAdjustmentContainer.Anchor = Anchor.Centre;
drawableRuleset.PlayfieldAdjustmentContainer.Origin = Anchor.Centre;
2021-04-24 13:33:56 +08:00
drawableRuleset.PlayfieldAdjustmentContainer.Scale = new Vector2(1, -1);
2021-04-17 22:01:23 +08:00
}
}
}