mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 15:17:28 +08:00
34 lines
963 B
C#
34 lines
963 B
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 OpenTK.Graphics;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Input;
|
|
|
|
namespace osu.Game.Graphics.Containers
|
|
{
|
|
public class OsuHoverContainer : OsuClickableContainer
|
|
{
|
|
private Color4 hoverColour;
|
|
|
|
protected override bool OnHover(InputState state)
|
|
{
|
|
this.FadeColour(hoverColour, 500, Easing.OutQuint);
|
|
return base.OnHover(state);
|
|
}
|
|
|
|
protected override void OnHoverLost(InputState state)
|
|
{
|
|
this.FadeColour(Color4.White, 500, Easing.OutQuint);
|
|
base.OnHoverLost(state);
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours)
|
|
{
|
|
hoverColour = colours.Yellow;
|
|
}
|
|
}
|
|
}
|