mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 05:38:21 +08:00
66 lines
1.9 KiB
C#
66 lines
1.9 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 OpenTK;
|
|
using OpenTK.Graphics;
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
namespace osu.Game.Modes.Osu.Objects.Drawables.Connections
|
|
{
|
|
public class FollowPoint : Container
|
|
{
|
|
public double StartTime;
|
|
public double EndTime;
|
|
public Vector2 EndPosition;
|
|
|
|
private const float width = 8;
|
|
|
|
public FollowPoint()
|
|
{
|
|
Origin = Anchor.Centre;
|
|
Alpha = 0;
|
|
|
|
Masking = true;
|
|
AutoSizeAxes = Axes.Both;
|
|
CornerRadius = width / 2;
|
|
EdgeEffect = new EdgeEffect
|
|
{
|
|
Type = EdgeEffectType.Glow,
|
|
Colour = Color4.White.Opacity(0.2f),
|
|
Radius = 4,
|
|
};
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
new Box
|
|
{
|
|
Size = new Vector2(width),
|
|
BlendingMode = BlendingMode.Additive,
|
|
Origin = Anchor.Centre,
|
|
Anchor = Anchor.Centre,
|
|
Alpha = 0.5f,
|
|
},
|
|
};
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
Delay(StartTime);
|
|
FadeIn(DrawableOsuHitObject.TIME_FADEIN);
|
|
ScaleTo(1.5f);
|
|
ScaleTo(1, DrawableOsuHitObject.TIME_FADEIN, EasingTypes.Out);
|
|
MoveTo(EndPosition, DrawableOsuHitObject.TIME_FADEIN, EasingTypes.Out);
|
|
|
|
Delay(EndTime - StartTime);
|
|
FadeOut(DrawableOsuHitObject.TIME_FADEIN);
|
|
|
|
Delay(DrawableOsuHitObject.TIME_FADEIN);
|
|
Expire(true);
|
|
}
|
|
}
|
|
} |