osu/osu.Game.Rulesets.Mania/Edit/Blueprints/Components/EditBodyPiece.cs

24 lines
720 B
C#
Raw Normal View History

2023-06-22 16:37:25 +00:00
// 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.
2018-11-19 09:59:05 +00:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
2018-11-19 09:59:05 +00:00
using osu.Game.Graphics;
2020-12-07 03:32:52 +00:00
using osu.Game.Rulesets.Mania.Skinning.Default;
2018-11-19 09:59:05 +00:00
namespace osu.Game.Rulesets.Mania.Edit.Blueprints.Components
{
2022-11-24 05:32:20 +00:00
public partial class EditBodyPiece : DefaultBodyPiece
2018-11-19 09:59:05 +00:00
{
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
2020-03-31 07:42:35 +00:00
AccentColour.Value = colours.Yellow;
Background.Alpha = 0.5f;
2018-11-19 09:59:05 +00:00
}
protected override Drawable CreateForeground() => base.CreateForeground().With(d => d.Alpha = 0);
2018-11-19 09:59:05 +00:00
}
}