1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-19 14:42:57 +08:00
osu-lazer/osu.Game/Overlays/Changelog/Header/TextBadgePairRelease.cs
HoutarouOreki b4bb97fba8 Header2
2018-07-17 15:01:53 +02:00

44 lines
1.3 KiB
C#

// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Graphics;
using osu.Framework.Graphics.Colour;
using osu.Framework.Input;
namespace osu.Game.Overlays.Changelog.Header
{
public class TextBadgePairRelease : TextBadgePair
{
private TextBadgePairListing listingBadge;
private const float transition_duration = 125;
public TextBadgePairRelease(ColourInfo badgeColour, string displayText) : base(badgeColour, displayText)
{
this.listingBadge = listingBadge;
text.Font = "Exo2.0-Bold";
text.Y = 20;
text.Alpha = 0;
}
public void SetText(string displayText)
{
text.Text = displayText;
}
public void Activate(string displayText = null)
{
ClearTransforms();
if (!lineBadge.IsCollapsed) ChangeText(transition_duration, displayText);
else ShowText(transition_duration, displayText);
OnActivation?.Invoke();
}
public override void Deactivate()
{
FinishTransforms(true);
HideText(transition_duration);
OnDeactivation?.Invoke();
}
}
}