1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 03:27:26 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Skinning/Default/SpinnerFill.cs

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

55 lines
1.4 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
2017-05-18 18:40:20 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2019-04-02 13:51:28 +08:00
using osu.Framework.Graphics.Effects;
using osu.Framework.Graphics.Shapes;
2017-05-18 18:40:20 +08:00
using osu.Game.Graphics;
2020-07-20 14:19:17 +08:00
using osuTK.Graphics;
2018-04-13 17:19:50 +08:00
2020-12-04 19:21:53 +08:00
namespace osu.Game.Rulesets.Osu.Skinning.Default
{
public partial class SpinnerFill : CircularContainer, IHasAccentColour
{
2020-07-20 16:48:35 +08:00
public readonly Box Disc;
2018-04-13 17:19:50 +08:00
2017-05-18 18:40:20 +08:00
public Color4 AccentColour
{
2020-07-20 16:48:35 +08:00
get => Disc.Colour;
2017-05-18 20:38:19 +08:00
set
{
2020-07-20 16:48:35 +08:00
Disc.Colour = value;
2018-04-13 17:19:50 +08:00
2017-06-12 11:48:47 +08:00
EdgeEffect = new EdgeEffectParameters
2017-05-18 20:38:19 +08:00
{
Hollow = true,
2017-05-18 20:38:19 +08:00
Type = EdgeEffectType.Glow,
Radius = 40,
Colour = value,
2017-05-18 20:38:19 +08:00
};
}
2017-05-18 18:40:20 +08:00
}
2018-04-13 17:19:50 +08:00
public SpinnerFill()
2017-05-18 18:40:20 +08:00
{
RelativeSizeAxes = Axes.Both;
Masking = true;
2018-04-13 17:19:50 +08:00
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
2017-05-18 18:40:20 +08:00
Children = new Drawable[]
{
2020-07-20 16:48:35 +08:00
Disc = new Box
2017-05-18 18:40:20 +08:00
{
Origin = Anchor.Centre,
Anchor = Anchor.Centre,
RelativeSizeAxes = Axes.Both,
Alpha = 1,
},
};
}
}
}