osu/osu.Game.Rulesets.Mania/Edit/Masks/NoteSelectionBlueprint.cs

40 lines
1.0 KiB
C#
Raw Normal View History

2018-05-20 10:22:42 +00:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Allocation;
using osu.Game.Graphics;
using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Mania.Objects.Drawables;
using osu.Game.Rulesets.Mania.Objects.Drawables.Pieces;
2018-10-03 04:45:41 +00:00
namespace osu.Game.Rulesets.Mania.Edit.Masks
2018-05-20 10:22:42 +00:00
{
2018-11-06 08:56:04 +00:00
public class NoteSelectionBlueprint : SelectionBlueprint
2018-05-20 10:22:42 +00:00
{
2018-11-06 08:56:04 +00:00
public NoteSelectionBlueprint(DrawableNote note)
2018-05-20 10:22:42 +00:00
: base(note)
{
Scale = note.Scale;
2018-06-07 10:19:32 +00:00
CornerRadius = 5;
Masking = true;
2018-05-20 10:22:42 +00:00
AddInternal(new NotePiece());
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
Colour = colours.Yellow;
}
2018-06-07 09:28:49 +00:00
protected override void Update()
{
base.Update();
Size = HitObject.DrawSize;
2018-06-07 09:59:52 +00:00
Position = Parent.ToLocalSpace(HitObject.ScreenSpaceDrawQuad.TopLeft);
2018-06-07 09:28:49 +00:00
}
2018-05-20 10:22:42 +00:00
}
}