2018-05-20 18:22:42 +08: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;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Edit.Layers.Selection.Overlays
|
|
|
|
|
{
|
|
|
|
|
public class NoteMask : HitObjectMask
|
|
|
|
|
{
|
|
|
|
|
public NoteMask(DrawableNote note)
|
|
|
|
|
: base(note)
|
|
|
|
|
{
|
|
|
|
|
Scale = note.Scale;
|
|
|
|
|
|
2018-06-07 18:19:32 +08:00
|
|
|
|
CornerRadius = 5;
|
|
|
|
|
Masking = true;
|
|
|
|
|
|
2018-05-20 18:22:42 +08:00
|
|
|
|
AddInternal(new NotePiece());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
|
|
|
|
Colour = colours.Yellow;
|
|
|
|
|
}
|
2018-06-07 17:28:49 +08:00
|
|
|
|
|
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
|
|
|
|
|
|
|
|
|
Size = HitObject.DrawSize;
|
2018-06-07 17:59:52 +08:00
|
|
|
|
Position = Parent.ToLocalSpace(HitObject.ScreenSpaceDrawQuad.TopLeft);
|
2018-06-07 17:28:49 +08:00
|
|
|
|
}
|
2018-05-20 18:22:42 +08:00
|
|
|
|
}
|
|
|
|
|
}
|