osu/osu.Game.Rulesets.Osu/Edit/Blueprints/Spinners/Components/SpinnerPiece.cs

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

60 lines
1.6 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.
2018-10-29 09:23:23 +00:00
2022-06-17 07:37:17 +00:00
#nullable disable
2018-10-29 09:23:23 +00:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics;
using osu.Game.Rulesets.Osu.Objects;
2018-11-20 07:51:59 +00:00
using osuTK;
2018-10-29 09:23:23 +00:00
2018-11-07 07:08:56 +00:00
namespace osu.Game.Rulesets.Osu.Edit.Blueprints.Spinners.Components
2018-10-29 09:23:23 +00:00
{
public partial class SpinnerPiece : BlueprintPiece<Spinner>
2018-10-29 09:23:23 +00:00
{
private readonly Circle circle;
private readonly Circle ring;
2018-10-29 09:23:23 +00:00
public SpinnerPiece()
2018-10-29 09:23:23 +00:00
{
Origin = Anchor.Centre;
RelativeSizeAxes = Axes.Both;
FillMode = FillMode.Fit;
Size = new Vector2(1);
2018-10-29 09:23:23 +00:00
InternalChildren = new Drawable[]
{
circle = new Circle
2018-10-29 09:23:23 +00:00
{
RelativeSizeAxes = Axes.Both,
Alpha = 0.5f,
},
ring = new Circle
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Size = new Vector2(OsuHitObject.OBJECT_RADIUS),
},
2018-10-29 09:23:23 +00:00
};
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
Colour = colours.Yellow;
}
public override void UpdateFrom(Spinner hitObject)
{
base.UpdateFrom(hitObject);
ring.Scale = new Vector2(hitObject.Scale);
}
2018-10-29 09:23:23 +00:00
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => circle.ReceivePositionalInputAt(screenSpacePos);
}
}