1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 22:07:40 +08:00
osu-lazer/osu.Game.Rulesets.Mania/Edit/Blueprints/Components/EditBodyPiece.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
728 B
C#
Raw Normal View History

// 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
2022-06-17 15:37:17 +08:00
#nullable disable
2018-11-19 17:59:05 +08:00
using osu.Framework.Allocation;
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;
Background.Alpha = 0.5f;
2018-11-19 17:59:05 +08:00
}
protected override Drawable CreateForeground() => base.CreateForeground().With(d => d.Alpha = 0);
2018-11-19 17:59:05 +08:00
}
}