2019-01-24 16:43:03 +08: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 17:59:05 +08:00
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
2020-08-18 16:56:48 +08:00
|
|
|
using osu.Framework.Graphics;
|
2018-11-19 17:59:05 +08:00
|
|
|
using osu.Game.Graphics;
|
2020-12-07 11:32:52 +08:00
|
|
|
using osu.Game.Rulesets.Mania.Skinning.Default;
|
2018-11-19 17:59:05 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Edit.Blueprints.Components
|
|
|
|
{
|
2020-03-31 15:42:35 +08:00
|
|
|
public class EditBodyPiece : DefaultBodyPiece
|
2018-11-19 17:59:05 +08:00
|
|
|
{
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
{
|
2020-03-31 15:42:35 +08:00
|
|
|
AccentColour.Value = colours.Yellow;
|
2018-11-29 17:13:15 +08:00
|
|
|
|
|
|
|
Background.Alpha = 0.5f;
|
2018-11-19 17:59:05 +08:00
|
|
|
}
|
2020-08-18 16:56:48 +08:00
|
|
|
|
|
|
|
protected override Drawable CreateForeground() => base.CreateForeground().With(d => d.Alpha = 0);
|
2018-11-19 17:59:05 +08:00
|
|
|
}
|
|
|
|
}
|