mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 07:47:25 +08:00
45 lines
1.4 KiB
C#
45 lines
1.4 KiB
C#
// 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.
|
|
|
|
#nullable disable
|
|
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Primitives;
|
|
using osu.Game.Rulesets.Osu.Edit.Blueprints.HitCircles.Components;
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Edit.Blueprints.HitCircles
|
|
{
|
|
public partial class HitCircleSelectionBlueprint : OsuSelectionBlueprint<HitCircle>
|
|
{
|
|
protected new DrawableHitCircle DrawableObject => (DrawableHitCircle)base.DrawableObject;
|
|
|
|
protected readonly HitCirclePiece CirclePiece;
|
|
private readonly HitCircleOverlapMarker marker;
|
|
|
|
public HitCircleSelectionBlueprint(HitCircle circle)
|
|
: base(circle)
|
|
{
|
|
InternalChildren = new Drawable[]
|
|
{
|
|
marker = new HitCircleOverlapMarker(),
|
|
CirclePiece = new HitCirclePiece(),
|
|
};
|
|
}
|
|
|
|
protected override void Update()
|
|
{
|
|
base.Update();
|
|
|
|
CirclePiece.UpdateFrom(HitObject);
|
|
marker.UpdateFrom(HitObject);
|
|
}
|
|
|
|
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => DrawableObject.HitArea.ReceivePositionalInputAt(screenSpacePos);
|
|
|
|
public override Quad SelectionQuad => CirclePiece.ScreenSpaceDrawQuad;
|
|
}
|
|
}
|