mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 21:27:23 +08:00
31 lines
959 B
C#
31 lines
959 B
C#
// 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.Bindables;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Game.Configuration;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Mods
|
|
{
|
|
public class OsuModDeflate : OsuModObjectScaleTween
|
|
{
|
|
public override string Name => "Deflate";
|
|
|
|
public override string Acronym => "DF";
|
|
|
|
public override IconUsage? Icon => FontAwesome.Solid.CompressArrowsAlt;
|
|
|
|
public override string Description => "Hit them at the right size!";
|
|
|
|
[SettingSource("Starting Size", "The initial size multiplier applied to all objects.")]
|
|
public override BindableNumber<float> StartScale { get; } = new BindableFloat
|
|
{
|
|
MinValue = 1f,
|
|
MaxValue = 25f,
|
|
Default = 2f,
|
|
Value = 2f,
|
|
Precision = 0.1f,
|
|
};
|
|
}
|
|
}
|