1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 00:17:21 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Edit/Blueprints/Sliders/SliderCircleSelectionBlueprint.cs

24 lines
904 B
C#
Raw Normal View History

2018-04-13 18:19:50 +09:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2018-11-07 16:08:56 +09:00
using osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders.Components;
2018-04-13 18:19:50 +09:00
using osu.Game.Rulesets.Osu.Objects;
using osu.Game.Rulesets.Osu.Objects.Drawables;
2018-11-07 16:08:56 +09:00
namespace osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders
2018-04-13 18:19:50 +09:00
{
public class SliderCircleSelectionBlueprint : OsuSelectionBlueprint
2018-04-13 18:19:50 +09:00
{
2018-11-06 17:56:04 +09:00
public SliderCircleSelectionBlueprint(DrawableOsuHitObject hitObject, Slider slider, SliderPosition position)
2018-04-13 18:19:50 +09:00
: base(hitObject)
{
2018-10-26 13:51:03 +09:00
InternalChild = new SliderCirclePiece(slider, position);
2018-04-13 18:19:50 +09:00
Select();
}
// Todo: This is temporary, since the slider circle masks don't do anything special yet. In the future they will handle input.
public override bool HandlePositionalInput => false;
2018-04-13 18:19:50 +09:00
}
}