mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 01:47:24 +08:00
41 lines
1.2 KiB
C#
41 lines
1.2 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 osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Screens.Play.HUD;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Screens.Play
|
|
{
|
|
public partial class ArgonKeyCounterDisplay : KeyCounterDisplay
|
|
{
|
|
private const int duration = 100;
|
|
|
|
protected override FillFlowContainer<KeyCounter> KeyFlow { get; }
|
|
|
|
public ArgonKeyCounterDisplay()
|
|
{
|
|
InternalChild = KeyFlow = new FillFlowContainer<KeyCounter>
|
|
{
|
|
Direction = FillDirection.Horizontal,
|
|
AutoSizeAxes = Axes.Both,
|
|
Alpha = 0,
|
|
Spacing = new Vector2(2),
|
|
};
|
|
}
|
|
|
|
protected override void Update()
|
|
{
|
|
base.Update();
|
|
|
|
Size = KeyFlow.Size;
|
|
}
|
|
|
|
protected override KeyCounter CreateCounter(InputTrigger trigger) => new ArgonKeyCounter(trigger);
|
|
|
|
protected override void UpdateVisibility()
|
|
=> KeyFlow.FadeTo(AlwaysVisible.Value || ConfigVisibility.Value ? 1 : 0, duration);
|
|
}
|
|
}
|