mirror of
https://github.com/osukey/osukey.git
synced 2025-05-02 12:17:27 +09:00
31 lines
961 B
C#
31 lines
961 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;
|
|
using osu.Game.Configuration;
|
|
using osu.Game.Screens.Play;
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
{
|
|
public abstract class ModBlockFail : Mod, IApplicableFailOverride, IApplicableToHUD, IReadFromConfig
|
|
{
|
|
private Bindable<bool> hideHealthBar;
|
|
|
|
/// <summary>
|
|
/// We never fail, 'yo.
|
|
/// </summary>
|
|
public bool AllowFail => false;
|
|
|
|
public void ReadFromConfig(OsuConfigManager config)
|
|
{
|
|
hideHealthBar = config.GetBindable<bool>(OsuSetting.HideHealthBarWhenCantFail);
|
|
}
|
|
|
|
public void ApplyToHUD(HUDOverlay overlay)
|
|
{
|
|
hideHealthBar.BindValueChanged(v => overlay.HealthDisplay.FadeTo(v.NewValue ? 0 : 1, 250, Easing.OutQuint), true);
|
|
}
|
|
}
|
|
}
|