osu/osu.Game.Rulesets.Osu/Skinning/Default/ReverseArrowPiece.cs

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

54 lines
1.7 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.
2022-06-17 07:37:17 +00:00
#nullable disable
2020-12-04 11:21:53 +00:00
using osu.Framework.Allocation;
using osu.Framework.Audio.Track;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using osu.Game.Beatmaps.ControlPoints;
using osu.Game.Graphics.Containers;
2020-04-05 10:36:52 +00:00
using osu.Game.Rulesets.Objects.Drawables;
2020-12-04 11:21:53 +00:00
using osu.Game.Rulesets.Osu.Objects;
using osu.Game.Skinning;
using osuTK;
2020-12-04 11:21:53 +00:00
namespace osu.Game.Rulesets.Osu.Skinning.Default
{
public class ReverseArrowPiece : BeatSyncedContainer
{
2020-04-05 10:36:52 +00:00
[Resolved]
2020-04-05 10:39:31 +00:00
private DrawableHitObject drawableRepeat { get; set; }
2020-04-05 09:45:10 +00:00
2020-01-14 09:14:31 +00:00
public ReverseArrowPiece()
{
Divisor = 2;
MinimumBeatLength = 200;
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
Size = new Vector2(OsuHitObject.OBJECT_RADIUS * 2);
2020-01-13 16:45:10 +00:00
Child = new SkinnableDrawable(new OsuSkinComponent(OsuSkinComponents.ReverseArrow), _ => new SpriteIcon
{
RelativeSizeAxes = Axes.Both,
2020-04-08 09:58:09 +00:00
Blending = BlendingParameters.Additive,
Icon = FontAwesome.Solid.ChevronRight,
Size = new Vector2(0.35f)
2020-01-13 16:45:32 +00:00
})
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
};
}
2020-06-23 04:49:18 +00:00
protected override void OnNewBeat(int beatIndex, TimingControlPoint timingPoint, EffectControlPoint effectPoint, ChannelAmplitudes amplitudes)
2020-04-05 09:45:10 +00:00
{
2020-04-05 10:39:31 +00:00
if (!drawableRepeat.IsHit)
2020-04-05 09:45:10 +00:00
Child.ScaleTo(1.3f).ScaleTo(1f, timingPoint.BeatLength, Easing.Out);
}
}
}