1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:47:24 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Mods/OsuModDeflate.cs

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

28 lines
831 B
C#
Raw Normal View History

// 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.
2020-07-17 22:12:01 +08:00
using osu.Framework.Bindables;
using osu.Framework.Graphics.Sprites;
2022-08-11 04:09:11 +08:00
using osu.Framework.Localisation;
namespace osu.Game.Rulesets.Osu.Mods
{
public class OsuModDeflate : OsuModObjectScaleTween
{
public override string Name => "Deflate";
public override string Acronym => "DF";
2020-01-14 21:22:00 +08:00
public override IconUsage? Icon => FontAwesome.Solid.CompressArrowsAlt;
2022-08-11 04:09:11 +08:00
public override LocalisableString Description => "Hit them at the right size!";
2022-09-26 03:49:22 +08:00
public override BindableNumber<float> StartScale { get; } = new BindableFloat(2)
2020-07-17 22:12:01 +08:00
{
MinValue = 1f,
MaxValue = 25f,
2020-07-17 22:12:01 +08:00
Precision = 0.1f,
};
}
}