mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 22:07:40 +08:00
58 lines
1.7 KiB
C#
58 lines
1.7 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Database;
|
|
using OpenTK.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Toolbar
|
|
{
|
|
public class ToolbarModeButton : ToolbarButton
|
|
{
|
|
private RulesetInfo ruleset;
|
|
public RulesetInfo Ruleset
|
|
{
|
|
get { return ruleset; }
|
|
set
|
|
{
|
|
ruleset = value;
|
|
|
|
var rInstance = ruleset.CreateInstance();
|
|
|
|
TooltipMain = rInstance.Description;
|
|
TooltipSub = $"Play some {rInstance.Description}";
|
|
Icon = rInstance.Icon;
|
|
}
|
|
}
|
|
|
|
public bool Active
|
|
{
|
|
set
|
|
{
|
|
if (value)
|
|
{
|
|
DrawableIcon.Colour = Color4.White;
|
|
DrawableIcon.Masking = true;
|
|
DrawableIcon.EdgeEffect = new EdgeEffect
|
|
{
|
|
Type = EdgeEffectType.Glow,
|
|
Colour = new Color4(255, 194, 224, 100),
|
|
Radius = 15,
|
|
Roundness = 15,
|
|
};
|
|
}
|
|
else
|
|
{
|
|
DrawableIcon.Masking = false;
|
|
DrawableIcon.Colour = new Color4(255, 194, 224, 255);
|
|
}
|
|
}
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
DrawableIcon.TextSize *= 1.4f;
|
|
}
|
|
}
|
|
} |