2023-06-23 00:37:25 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 16:43:03 +08:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-11-12 16:59:39 +08:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
2024-11-05 22:23:09 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2018-11-12 16:59:39 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2024-11-05 22:23:09 +08:00
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2018-11-12 16:59:39 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2020-12-07 11:32:52 +08:00
|
|
|
|
using osu.Game.Rulesets.Mania.Skinning.Default;
|
2024-11-05 22:23:09 +08:00
|
|
|
|
using osuTK.Graphics;
|
2018-11-12 16:59:39 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Edit.Blueprints.Components
|
|
|
|
|
{
|
2022-11-24 13:32:20 +08:00
|
|
|
|
public partial class EditNotePiece : CompositeDrawable
|
2018-11-12 16:59:39 +08:00
|
|
|
|
{
|
|
|
|
|
public EditNotePiece()
|
|
|
|
|
{
|
|
|
|
|
Masking = true;
|
2024-11-07 15:41:29 +08:00
|
|
|
|
CornerRadius = 5;
|
2024-11-05 22:23:09 +08:00
|
|
|
|
BorderThickness = 9; // organoleptically chosen to look good enough for all default skins
|
|
|
|
|
BorderColour = Color4.White;
|
|
|
|
|
Height = DefaultNotePiece.NOTE_HEIGHT;
|
2018-11-12 16:59:39 +08:00
|
|
|
|
|
2024-11-05 22:23:09 +08:00
|
|
|
|
InternalChild = new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Alpha = 0,
|
|
|
|
|
AlwaysPresent = true,
|
|
|
|
|
};
|
2018-11-12 16:59:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
|
|
|
|
Colour = colours.Yellow;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|