mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 02:37:25 +08:00
52 lines
1.3 KiB
C#
52 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 OpenTK;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Graphics;
|
|
using osu.Framework.Allocation;
|
|
|
|
namespace osu.Game.Screens.Play.BreaksOverlay
|
|
{
|
|
public class BlurredIcon : BufferedContainer
|
|
{
|
|
private readonly SpriteIcon icon;
|
|
|
|
public FontAwesome Icon
|
|
{
|
|
set { icon.Icon = value; }
|
|
get { return icon.Icon; }
|
|
}
|
|
|
|
public override Vector2 Size
|
|
{
|
|
set
|
|
{
|
|
icon.Size = value;
|
|
base.Size = value + BlurSigma * 2.5f;
|
|
ForceRedraw();
|
|
}
|
|
get { return base.Size; }
|
|
}
|
|
|
|
public BlurredIcon()
|
|
{
|
|
RelativePositionAxes = Axes.X;
|
|
CacheDrawnFrameBuffer = true;
|
|
Child = icon = new SpriteIcon
|
|
{
|
|
Origin = Anchor.Centre,
|
|
Anchor = Anchor.Centre,
|
|
Shadow = false,
|
|
};
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours)
|
|
{
|
|
Colour = colours.BlueLighter;
|
|
}
|
|
}
|
|
}
|