1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 02:07:26 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Objects/Drawables/Connections/FollowPoint.cs

45 lines
1.3 KiB
C#
Raw Normal View History

2017-02-10 13:16:23 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK;
2017-02-12 15:19:52 +08:00
using OpenTK.Graphics;
using osu.Framework.Extensions.Color4Extensions;
2017-02-10 13:16:23 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Sprites;
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Osu.Objects.Drawables.Connections
2017-02-10 13:16:23 +08:00
{
public class FollowPoint : Container
{
2017-03-07 09:59:19 +08:00
private const float width = 8;
2017-02-12 15:19:52 +08:00
2017-02-10 13:16:23 +08:00
public FollowPoint()
{
Origin = Anchor.Centre;
2017-02-12 15:19:52 +08:00
Masking = true;
AutoSizeAxes = Axes.Both;
CornerRadius = width / 2;
EdgeEffect = new EdgeEffect
{
Type = EdgeEffectType.Glow,
Colour = Color4.White.Opacity(0.2f),
Radius = 4,
};
2017-02-10 13:16:23 +08:00
Children = new Drawable[]
{
2017-02-12 15:19:52 +08:00
new Box
2017-02-10 13:16:23 +08:00
{
2017-02-12 15:19:52 +08:00
Size = new Vector2(width),
2017-02-10 13:16:23 +08:00
BlendingMode = BlendingMode.Additive,
2017-02-12 15:19:52 +08:00
Origin = Anchor.Centre,
Anchor = Anchor.Centre,
Alpha = 0.5f,
2017-02-10 13:16:23 +08:00
},
};
}
}
}