mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:07:44 +08:00
33 lines
1.1 KiB
C#
33 lines
1.1 KiB
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 System;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Rulesets.Mods;
|
|
using osu.Framework.Utils;
|
|
using osu.Game.Rulesets.Catch.UI;
|
|
using osu.Game.Rulesets.UI;
|
|
|
|
namespace osu.Game.Rulesets.Catch.Mods
|
|
{
|
|
public class CatchModNoScope : ModNoScope, IUpdatableByPlayfield
|
|
{
|
|
public override LocalisableString Description => "Where's the catcher?";
|
|
|
|
public override BindableInt HiddenComboCount { get; } = new BindableInt(10)
|
|
{
|
|
MinValue = 0,
|
|
MaxValue = 50,
|
|
};
|
|
|
|
public void Update(Playfield playfield)
|
|
{
|
|
var catchPlayfield = (CatchPlayfield)playfield;
|
|
bool shouldAlwaysShowCatcher = IsBreakTime.Value;
|
|
float targetAlpha = shouldAlwaysShowCatcher ? 1 : ComboBasedAlpha;
|
|
catchPlayfield.CatcherArea.Alpha = (float)Interpolation.Lerp(catchPlayfield.CatcherArea.Alpha, targetAlpha, Math.Clamp(catchPlayfield.Time.Elapsed / TRANSITION_DURATION, 0, 1));
|
|
}
|
|
}
|
|
}
|