mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 13:47:33 +08:00
8f3fd7092e
Also moves default scale to CatchHitObject.
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 = (float)CatchHitObject.OBJECT_RADIUS / 2.2f;
|
|
|
|
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),
|
|
};
|
|
}
|
|
}
|
|
}
|
|
}
|