mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 03:17:28 +08:00
44 lines
1.2 KiB
C#
44 lines
1.2 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Game.Graphics;
|
|
using OpenTK;
|
|
using OpenTK.Graphics;
|
|
|
|
namespace osu.Game.Rulesets.Catch.Objects.Drawable.Pieces
|
|
{
|
|
public class Pulp : Circle, IHasAccentColour
|
|
{
|
|
public const float PULP_SIZE = 20;
|
|
|
|
public Pulp()
|
|
{
|
|
Size = new Vector2(PULP_SIZE);
|
|
|
|
Blending = BlendingMode.Additive;
|
|
Colour = Color4.White.Opacity(0.9f);
|
|
}
|
|
|
|
private Color4 accentColour;
|
|
public Color4 AccentColour
|
|
{
|
|
get { return accentColour; }
|
|
set
|
|
{
|
|
accentColour = value;
|
|
|
|
EdgeEffect = new EdgeEffectParameters
|
|
{
|
|
Type = EdgeEffectType.Glow,
|
|
Radius = 5,
|
|
Colour = accentColour.Lighten(100),
|
|
};
|
|
}
|
|
}
|
|
}
|
|
}
|