1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 05:27:26 +08:00
osu-lazer/osu.Game/Screens/Play/Break/BlurredIcon.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1.3 KiB
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
using osu.Framework.Allocation;
2017-09-21 06:44:30 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Sprites;
2017-09-21 06:44:30 +08:00
using osu.Game.Graphics;
2018-11-20 15:51:59 +08:00
using osuTK;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Screens.Play.Break
2017-09-21 06:44:30 +08:00
{
public class BlurredIcon : BufferedContainer
{
2017-09-23 01:43:51 +08:00
private readonly SpriteIcon icon;
2018-04-13 17:19:50 +08:00
public IconUsage Icon
2017-09-21 06:44:30 +08:00
{
set => icon.Icon = value;
get => icon.Icon;
2017-09-21 06:44:30 +08:00
}
2018-04-13 17:19:50 +08:00
2017-09-22 06:16:05 +08:00
public override Vector2 Size
{
set
{
icon.Size = value;
2017-09-23 01:43:51 +08:00
base.Size = value + BlurSigma * 2.5f;
ForceRedraw();
2017-09-22 06:16:05 +08:00
}
get => base.Size;
2017-09-22 06:16:05 +08:00
}
2018-04-13 17:19:50 +08:00
2017-09-21 06:44:30 +08:00
public BlurredIcon()
: base(cachedFrameBuffer: true)
2017-09-21 06:44:30 +08:00
{
RelativePositionAxes = Axes.X;
2017-09-23 01:43:51 +08:00
Child = icon = new SpriteIcon
2017-09-21 06:44:30 +08:00
{
Origin = Anchor.Centre,
Anchor = Anchor.Centre,
2017-09-23 01:43:51 +08:00
Shadow = false,
2017-09-21 06:44:30 +08:00
};
}
2018-04-13 17:19:50 +08:00
2017-09-23 01:43:51 +08:00
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
Colour = colours.BlueLighter;
}
2017-09-21 06:44:30 +08:00
}
}